What is c language & why it is used?
No Answer is Posted For this Question
Be the First to Post Answer
main() { char x; while(x=0;x<=255;x++) printf("\nAscii value %d Charater %c",x,x); }
main() { FILE *fs; char c[10]; fs = fopen(“source.txt”, ”r”); /* source.txt exists and contains “Vector Institute” */ fseek(fs,0,SEEK_END); fseek(fs,-3L,SEEK_CUR); fgets(c,5,fs); puts(c); }
List a few unconditional control statement in c.
Why do we use main function?
What is a symbolic constant?
Explain how to reverse singly link list.
Explain how do you generate random numbers in c?
Compare array data type to pointer data type
what is difference between c and c++
What is a const pointer, and how does it differ from a pointer to a const?
What is array of pointers to string?
Write a program on swapping (100, 50)