Differentiate between a for loop and a while loop? What are it uses?
No Answer is Posted For this Question
Be the First to Post Answer
How can a number be converted to a string?
Is double link list a linear data structure? If Yes, Why?If No, Why?
What is the purpose of main() function?
Why is it that not all header files are declared in every C program?
#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\n",x,y); swap2(x,y); printf("%d %d\n",x,y); } int swap2(int a,int b) { int temp; temp=a; b=a; a=temp; return; } what are the outputs?
can we print any string in c language without using semicolon(;)(terminator) in whole program.
What do you understand by friend-functions? How are they used?
Is return a keyword in c?
What is the result main() { char c=-64; int i=-32 unsigned int u =-16; if(c>i){ printf("pass1,"); if(c<u) printf("pass2"); else printf("Fail2");} else printf("Fail1); if(i<u) printf("pass2"); else printf("Fail2") } a)Pass1,Pass2 b)Pass1,Fail2 c)Fail1,Pass2 d)Fail1,Fail2 e)none
What is period operator in c?
how can i get output like this? 1 2 3 4 5 6
explain what is a newline escape sequence?