Can a pointer be static?
How many keywords (reserve words) are in c?
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); }
DIFFERNCE BETWEEN THE C++ AND C LANGUAGE?
What is a pointer?
main() { enum{red,green,blue=6,white}; pf("%d%d%d%d", red,green,blue,white); return 0; } a)0 1 6 2 b)0 1 6 7 c)Compilation error d)None of the above
Explain how are portions of a program disabled in demo versions?
Can we access array using pointer in c language?
What is an auto variable in c?
Where can I get an ansi-compatible lint?
Can U write a C-program to print the size of a data type without using the sizeof() operator? Explain how it works inside ?
What does a function declared as pascal do differently?
Do pointers need to be initialized?