When should I declare a function?


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

Post New Answer

More C Interview Questions

Is there any demerits of using pointer?

0 Answers  


Why c is a mother language?

0 Answers  


What is preprocessor with example?

0 Answers  


What is struct node in c?

0 Answers  


How can you allocate arrays or structures bigger than 64K?

0 Answers  






What is Dynamic Initialization.

3 Answers  


What are the data types present in c?

0 Answers  


Differentiate between Macro and ordinary definition.

0 Answers   Motorola,


what does keyword ‘extern’ mean in a function declaration?

1 Answers   Emerson,


#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }

0 Answers   Wilco,


How can we see the Expanded source code and compiled code for our source program in C?

1 Answers  


write a program to swap two variables a=5 , b= 10 without using third variable

5 Answers  


Categories