What does the format %10.2 mean when included in a printf statement?
No Answer is Posted For this Question
Be the First to Post Answer
Here is a neat trick for checking whether two strings are equal
What is a far pointer in c?
Average of a couple 10 years ago was 25. The average remains same after having a child and twins after 3 years. What is the present age of the first child
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
0 Answers Amdocs, Apps Associates,
Should I learn c before c++?
different between overloading and overriding
What is realloc in c?
What is extern variable in c with example?
What are the types of bitwise operator?
How can I read/write structures from/to data files?
swap two integer variables without using a third temporary 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