What are the c keywords?
No Answer is Posted For this Question
Be the First to Post Answer
What are the uses of pre-processor directives?
what are the advantage and disadvantage of recursion
11. Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10]; char s3[]="efgh"; int i; clrscr(); i=strcmp(strcat(s3,ctrcpy(s2,s1))strcat(s3,"abcd")); printf("%d",i); } What will be the output? A)No output B) A Non Integer C)0 D) Garbage
what is the output of below int n=10; (n++)++; printf("%d",n);
will the program compile? int i; scanf(ā%dā,i); printf(ā%dā,i);
What does do in c?
What does sizeof int return?
Can main () be called recursively?
What is #line?
What is meant by errors and debugging?
how many times does the loop iterated ? for (i=0;i=10;i+=2) printf("Hi\n");
What is union and structure?