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 |
main() { static char *s[]={"black","white","yellow","voilet"}; char **ptr[]={s+3,s+2,s+1,s}, ***p; p=ptr; **++p; printf("%s",*--*++p+3); }
what would be the output of the follwing struct st { char name[20]; int i; float f; }; main() { struct st emp = {"forum"}; printf("%d %f",emp.i,emp.f); }
how can you print&scan anything using just one character? :) HINT: printf,scanf similer
What is the difference between getch() and getche()?
Why we not create function inside function.
What is the significance of c program algorithms?
#include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain ؟؟؟
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
What is a null string in c?
Which of these functions is safer to use : fgets(), gets()? Why?
Is int a keyword in c?
write a program to insert an element at the specified position in the given array in c language