#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
Answer Posted / ashwini
c
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
What is a stream?
Is there any possibility to create customized header file with c programming language?
What is the method to save data in stack data structure type?
What is volatile, register definition in C
Can a pointer point to null?
Explain what is #line used for?
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. The Logic should be written in Data Structures?
The number of measuring units from an arbitarary starting point in a record,area,or control block to some other point a) recording pointer b) offset c) branching d) none
What’s the special use of UNIONS?
Define circular linked list.
What is the difference between Printf(..) and sprint(...) ?
What is the difference between array and pointer?
Explain what is wrong in this statement?
How do I copy files?
Why doesnt that code work?