Why main function is special give two reasons?
No Answer is Posted For this Question
Be the First to Post Answer
write a program to sum of its digit with using control structure or with out using loop. for ex: let the number is 25634 then answer will be=2+5+6+3+4=20
Is register a keyword in c?
int a=20; int b=30; int c=40; printf("%d%d%d"); what will be the output?
What the advantages of using Unions?
do u print this format '(((())))'. This brackets is based on user input like 4 or 5 or 6,without using any loop's?
Are bit fields portable?
program to print circle structure
What is the output of following program ? int main() { int x = 5; printf("%d %d %d\n", x, x << 2, x >> 2); }
Explain what is the advantage of a random access file?
What is the difference between array and structure in c?
#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);}
Can we access array using pointer in c language?