1.Why do you call C is middle level language?
2.Why do you call C is userfriendly language.
Answer Posted / anusha
1.C is called as a middle level lang bcoz its a commbination
of both high level lang and the low level lang .
| Is This Answer Correct ? | 7 Yes | 3 No |
Post New Answer View All Answers
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)
How do you write a program which produces its own source code as output?
How can I insert or delete a line (or record) in the middle of a file?
What is sizeof array in c?
What are the back slash character constants or escape sequence charactersavailable in c?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
Why is main function so important?
What does *p++ do? What does it point to?
What are external variables in c?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
How do you define a function?
how to write optimum code to divide a 50 digit number with a 25 digit number??
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 two-dimensional array.
How pointer is different from array?