for(;;)
printf("C language")
What is out put of above??
Answers were Sorted based on User's Feedback
Answer / himanshu rajput
it will go infinitely,produce c language infinite time.
| Is This Answer Correct ? | 11 Yes | 1 No |
Answer / anilsn
compilation error, ; should be at the end of printf
| Is This Answer Correct ? | 1 Yes | 1 No |
Explain how to reverse singly link list.
How can you return multiple values from a function?
int n=1; while(1) { switch(n) { case 1:printf("a"); n++; continue; case 2:printf("b"); n++; continue; default : printf("c"); break; } break; }
String concatenation
what is the difference between : func (int list[], ...) or func (int *list , ....) - what is the difference if list is an array and if also if list is a pointer
Is an array parameter is always "by reference" ?
main() { int a[10]; printf("%d",*a+1-*a+3); }
Write a program to print prime nums from 1-20 using c programing?
what will the following program do? void main() { int i; char a[]="String"; char *p="New Sring"; char *Temp; Temp=a; a=malloc(strlen(p) + 1); strcpy(a,p); //Line no:9// p = malloc(strlen(Temp) + 1); strcpy(p,Temp); printf("(%s, %s)",a,p); free(p); free(a); } //Line no 15// a) Swap contents of p & a and print:(New string, string) b) Generate compilation error in line number 8 c) Generate compilation error in line number 5 d) Generate compilation error in line number 7 e) Generate compilation error in line number 1
what is reason of your company position's in india no. 1.
1,1,5,17,61,217,?,?.
a program that can input number of records and can view it again the record