Suppose we have: int a=100; (signed by default).
If we want to convert this to an unsigned long integer, we can do this by making the following small change:
Suppose we have: int a=100; (signed by default).
If we want to convert this to an unsigned long integer, we can do this by making the following small change: Correct Answer int a= 100ul;
মোঃ আরিফুল ইসলাম
Feb 20, 2025