#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
number of times a digit is present in a number
When do we get logical errors?
How many levels of pointers can you have?
write a program to print data of 5 five students with structures?
What is time complexity c?
Is int a keyword in c?
Can we assign string to char pointer?
show how link list can be used to repersent the following polynomial i) 5x+2
Can you write the function prototype, definition and mention the other requirements.
Explain the use of fflush() function?
Write a simple code fragment that will check if a number is positive or negative.
How many levels of pointers have?
Write a factorial program using C.
List the difference between a "copy constructor" and a "assignment operator"?
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)