How many types of arrays are there in c?
No Answer is Posted For this Question
Be the First to Post Answer
Why enum is used in c?
Can you add pointers together? Why would you?
What are the general description for loop statement and available loop types in c?
cavium networks written test pattern ..
What does == mean in texting?
program to get the remainder and quotant of given two numbers with out using % and / operators?
10 Answers College School Exams Tests, IBM,
What does sizeof return c?
what is the use of #pragma pack, wer it is used?
How can I read a directory in a C program?
2 Answers Bright Outdoor, Wipro,
Explain what is #line used for?
Can you assign a different address to an array tag?
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300