What is a program flowchart?
No Answer is Posted For this Question
Be the First to Post Answer
What is unsigned int in c?
What does void main return?
what are advantages of U D F?
what are the files which are automatically opened when a c file is executed?
how to swap two nubers by using a function with pointers?
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); }
What are the types of type specifiers?
Differentiate between #include<...> and #include '...'
What is structure packing in c?
Did c have any year 2000 problems?
What is the difference between malloc() and calloc() function in c language?
What is main return c?