Why is C called a middle-level language?
Answer / nashiinformaticssolutions
It combines features of high-level and low-level languages.
| Is This Answer Correct ? | 0 Yes | 0 No |
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
write a program to find the number of even integers and odd integers in a given array in c language
13 Answers IAI Cameroun, NIIT, Olive Tech, QIS,
Why we write conio h in c?
Where are the auto variables stored?
What is the output of below code? main() { static in a=5; printf("%3d",a--); if(a) main(); }
main() { int i=1; while (i<=5) { printf("%d",i); if (i>2) goto here; i++; } } fun() { here: printf("PP"); }
What is the difference between char a[] = "string"; and char *p = "string"; ?
14 Answers Adobe, Honeywell, TCS,
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
how can i get output like this? 1 2 3 4 5 6
Is main a keyword in c?
What is restrict keyword in c?
Where static variables are stored in memory in c?