c static – POFTUT

Commonly Asked C Programming Interview Questions and Answers

What is the difference between declaration and definition of a variable or function? Declaration a variable and function will declare that there is a variable or function in the program but the memory allocation is not done.Generally extern keyword is used Definition a variable or function will allocate required memory area. Normal definitions like int is used. … Read more