Why do we use header files in c?
No Answer is Posted For this Question
Be the First to Post Answer
What are the types of arrays in c?
Can we increase size of array in c?
Is calloc better than malloc?
Explain the difference between call by value and call by reference in c language?
What do you mean by c what are the main characteristics of c language?
Explain the difference between fopen() and freopen().
write aprogram for There is a mobile keypad with numbers 0-9 and alphabets on it. take input of 7 keys and then form a word from the alphabets present on those keys.
1 Answers iGate, Shashi, Source Bits, Subex,
Explain c preprocessor?
Write a programe print the sum of series 0,1,2,.....10
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
#define min((a),(b)) ((a)<(b))?(a):(b) main() { int i=0,a[20],*ptr; ptr=a; while(min(ptr++,&a[9])<&a[8]) i=i+1; printf("i=%d\n",i);}