What is an arrays?
No Answer is Posted For this Question
Be the First to Post Answer
Is c call by value?
what is the output of the following code? main() { int I; I=0x10+010+10; printf("x=%x",I); } give detailed reason
State the difference between realloc and free.
what does the following function print? func(int i) { if(i%2)return 0; eale return 1; } main() { int =3; i=func(i); i=func(i); printf("%d",i);}
Write a program to swap two numbers without using the third variable?
What is s or c?
int a=1,b=2,c=3; printf("%d,%d",a,b,c); What is the output?
What is structure padding & expalain wid example what is bit wise structure?
What is the size of enum in c?
is it possible to change the default calling convention in c ?
Explain how do you list a file’s date and time?
Why do we need functions in c?