#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
How is = symbol different from == symbol in c programming?
Explain how do you print only part of a string?
What is wrong with this declaration?
Explain the process of converting a Tree into a Binary Tree.
How arrays can be passed to a user defined function
What is meant by realloc()?
Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
What are predefined functions in c?
What are the application of void data type in c?
Differentiate between the = symbol and == symbol?
What is the need of structure in c?
Why void main is used in c?
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)
What is call by value in c?