What are structure types in C?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int i = 1; int num[] = {1,2,3,4}; num[i] = i++; printf("%d", num[i]); } what will be the output? }
22 Answers NDS, TCS,
What is keyword in c?
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
Is the exit() function same as the return statement? Explain.
0 Answers Agilent, ZS Associates,
What is ambagious result in C? explain with an example.
void main() { static int i = 5; if(--i) { main(); printf("%d ",i); } } what would be output of the above program and justify your answer? }
5 Answers C DAC, CDAC, Infosys, Wipro,
what is structuer?
how to find your architecture is LittleEndian or BigEndian?
How the C program can be compiled?
there is two conditions , 1. while using for loop for printing 1 to 50 no's simulteneous 2. while using printf functios for printing 1 to 50 no's simulteneous with or without using variables who will take more time for compiling and execution? explain in details with reason?
write a program fibonacci series and palindrome program in c
0 Answers Aditi Placement Service,
Explain Doubly Linked Lists?