What is #include stdio h?
No Answer is Posted For this Question
Be the First to Post Answer
Describe the header file and its usage in c programming?
What does main () mean in c?
What is the difference between functions getch() and getche()?
Difference between data structure and data base.
7 Answers CTS, Value Labs, Zoho,
what is the output of the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }
What is the purpose of the preprocessor directive error?
How to write a code for reverse of string without using string functions?
Dont ansi function prototypes render lint obsolete?
Tell me the use of bit field in c language?
enum day = { jan = 1 ,feb=4, april, may} what is the value of may? a)4 b)5 c)6 d)11 e)none of the above
How do we declare variables in c?
f(*p) { p=(char *)malloc(6); p="hello"; return; } main() { char *p="bye"; f(p); printf("%s",p); } what is the o/p?