What is #error and use of it?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int x=2, y=4 if ((x==2||y==4) x++ y++ if (y==4+1) { x=x+y; } y++; printf("The values of x and y are %d and %d."x,y); } What is the output?
What is the output of below code? main() { static in a=5; printf("%3d",a--); if(a) main(); }
Explain what math functions are available for integers? For floating point?
How do shell structures work?
What is c variable?
can we execute the program with the object file
How can I run c program?
write a program to find the frequency of a number
write a function that accepts an integer/char array and an search item.If the search item is there in the array return position of array and value else return -1.without using other array,without sorting,not to use more than one loop?
what is the defrenece between structure and union
struct abc { unsigned int a; char b; float r; }; struct xyz { int u; struct abc tt; }ww; ww = (struct xyz*)malloc(sizeof(struct xyz)); will the memory be allocated for the inner structure also?
what is level of tree if leaf node is at level 4.please explain.