What are the different types of control structures?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

Name the language in which the compiler of "c" in written?

3 Answers   Bajaj,


What is pre-emptive data structure and explain it with example?

0 Answers  


Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)

0 Answers   InterGraph,


Is there any possibility to create customized header file with c programming language?

0 Answers  


How many header files are in c?

0 Answers  






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

1 Answers   IBM,


What is const volatile variable in c?

0 Answers  


What does a pointer variable always consist of?

0 Answers  


how can i calculate mean,median,mode by using c program

1 Answers   HCL,


main() { printf("hello"); fork(); }

0 Answers   Wilco,


What are the features of c language?

0 Answers  


why effort estimation is important?

1 Answers  


Categories