C program to read the integer and calculate sum and average using single
dimensional array
No Answer is Posted For this Question
Be the First to Post Answer
How can we open a file in Binary mode and Text mode?what is the difference?
what does static variable mean?
how to convert binary to decimal and decimal to binary in C lanaguage
7 Answers BPO, Far East Promotions, IBM, RBS,
What is null pointer constant?
#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);}
char ch="{'H','I',0};printf("%s",ch);what is output
When should volatile modifier be used?
Is main() is used in the program,,see below example? void main() { int i; for(i=0;i<10;i++) main(); } Then what is the output of the program?
while initialization of array why we use a[][2] why not a[2][]...?
Is c language still used?
Why is c faster?
In header files whether functions are declared or defined?