Why c is procedure oriented?
No Answer is Posted For this Question
Be the First to Post Answer
Write down the program to sort the array.
i have a written test for microland please give me test pattern
Find the middle node in the linked list?? (Note:Do not use for loop, count and count/2)
what is dangling pointer?
What is indirection in c?
what is the defrenece between structure and union
What is main () in c language?
what is a static function
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
consider the following structure: struct num nam{ int no; char name[25]; }; struct num nam n1[]={{12,"Fred"},{15,"Martin"},{8,"Peter"},{11,Nicholas"}}; ..... ..... printf("%d%d",n1[2],no,(*(n1 + 2),no) + 1); What does the above statement print? a.8,9 b.9,9 c.8,8 d.8,unpredictable value
enum day = { jan = 1 ,feb=4, april, may} what is the value of may? a)4 b)5 c)6 d)11 e)none of the above
int i=10; printf("%d %d %d", i, i=20, i);