Tell me can the size of an array be declared at runtime?
What is the explanation for prototype function in c?
What is the difference between struct and typedef struct in c?
the statement while(i) puts the entire logic in loop. this loop is called a) indefinite loop b) definite loop c) loop syntax wrong d) none of the above
Why is this loop always executing once?
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 do you write a function that takes a variable number of arguments? What is the prototype of printf () function?
What is build process in c?
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
Explain can the sizeof operator be used to tell the size of an array passed to a function?
What is the full form of getch?
What is the general form of function in c?
write a program in c language to print your bio-data on the screen by using functions.
Disadvantages of C language.