Can a pointer be static?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

How many keywords (reserve words) are in c?

0 Answers  


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); }

1 Answers   Vector,


DIFFERNCE BETWEEN THE C++ AND C LANGUAGE?

2 Answers   Wipro,


What is a pointer?

1 Answers   ADP, IFFCO,


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

6 Answers  


Explain how are portions of a program disabled in demo versions?

0 Answers  


Can we access array using pointer in c language?

0 Answers  


What is an auto variable in c?

0 Answers  


Where can I get an ansi-compatible lint?

0 Answers  


Can U write a C-program to print the size of a data type without using the sizeof() operator? Explain how it works inside ?

3 Answers   HCL, TCS,


What does a function declared as pascal do differently?

0 Answers  


Do pointers need to be initialized?

0 Answers  


Categories