Why c is called object oriented language?
No Answer is Posted For this Question
Be the First to Post Answer
m=++i&&++j(||)k++ printf("%d"i,j,k,m)
What are the different data types in C?
What are pointers really good for, anyway?
Why the use of alloca() is discouraged?
write a c program to find reminder and quotient if one number is divided by other.to code this program don't use more than 2 variables
Bit swapping
What does != Mean in c?
What is key word in c language?
What does struct node * mean?
What is the purpose of 'register' keyword in c language?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
main() { int i=1; while (i<=5) { printf("%d",i); if (i>2) goto here; i++; } } fun() { here: printf("PP"); }