#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,200,100
Answer Posted / mann
a. 101,200,200,199
| Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
Differentiate between a for loop and a while loop? What are it uses?
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.
program to convert a integer to string in c language'
Tell us the use of fflush() function in c language?
Is r written in c?
How do c compilers work?
What are the restrictions of a modulus operator?
Can you add pointers together? Why would you?
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....
code for replace tabs with equivalent number of blanks
Why is c so important?
Are comments included during the compilation stage and placed in the EXE file as well?
write a program to print largest number of each row of a 2D array
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
Explain goto?