why do some people write if(0 == x) instead of if(x == 0)?
No Answer is Posted For this Question
Be the First to Post Answer
How can I sort a linked list?
Is it possible to have a function as a parameter in another function?
What is 1d array in c?
Is it fine to write void main () or main () in c?
we compile c program in 32 processor and 64 bit processor .exe file is created in both the processors. if we want to run .exe file in 64 bit processor which is created in 32 bit processor. is that .exe file is run or not if it is not run why?
Where define directive used?
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
how to TOGGLE Nth bit of variable in a MACRO
Are comments included during the compilation stage and placed in the EXE file as well?
#define min((a),(b)) ((a)<(b))?(a):(b) main() { int i=0,a[20],*ptr; ptr=a; while(min(ptr++,&a[9])<&a[8]) i=i+1; printf("i=%d\n",i);}
in C-programming language without using printf statement can we get output r not ? if yes how and if no also how ?
Explain c preprocessor?