What is a const pointer in c?
No Answer is Posted For this Question
Be the First to Post Answer
Can we use any name in place of argv and argc as command line arguments?
What is function in c with example?
what is object oriental programing?
What is meant by gets in c?
Can anyone tell what is stack overflow? what precaution we should take?
HOW TO HANDLE EXCEPTIONS IN C
Wt are the Buses in C Language
WHAT IS HEADER?
how many times does the loop iterated ? for (i=0;i=10;i+=2) printf("Hi\n");
Write a code to generate divisors of an integer?
Tell me can the size of an array be declared at runtime?
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