What is #ifdef ? What is its application?
No Answer is Posted For this Question
Be the First to Post Answer
List some applications of c programming language?
What is an auto keyword in c?
Why doesnt long int work?
a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list
What ios diff. Between %e & %f?
code for bubble sort?
Define circular linked list.
write a program to print sum of each row of a 2D array.
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
how we can make 3d venturing graphics on outer interface
How can I do peek and poke in c?
int array[]={1,2,3,4,5,6,7,8}; #define SIZE (sizeof(array)/sizeof(int)) main() { if(-1<=SIZE) printf("1"); else printf("2"); }