What is use of #include in c?
No Answer is Posted For this Question
Be the First to Post Answer
Explain what are compound statements?
#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\n",x,y); swap2(x,y); printf("%d %d\n",x,y); } int swap2(int a,int b) { int temp; temp=a; b=a; a=temp; return; } what are the outputs?
Why data types in all programming languages have some range? Why ritche have disigned first time likethat?Why not a single data type can support all other types?
What is null pointer constant?
in ‘C’ language for Matrix Multiplication fails” Introspect the causes for its failure and write down the possible reasons for its failure.
What are the disadvantages of external storage class?
If I want to initialize the array like. int a[5] = {0}; then it gives me all element 0. but if i give int a[5] = {5}; then 5 0 0 0 0 is ans. what will I do for all element 5 5 5 5 5 in a single statement???
Explain the use of bit fieild.
List the different types of c tokens?
What is an array? What the different types of arrays in c?
What is exit() function?
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?