#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
What is the maximum no. of arguments that can be given in a command line in C.?
What is spaghetti programming?
Is register a keyword in c?
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
What are the difference between a free-standing and a hosted environment?
What is structure and union in c?
Can true be a variable name in c?
Explain how do you sort filenames in a directory?
What is LINKED LIST? How can you access the last element in a linked list?
What is the difference between fread buffer() and fwrite buffer()?
Explain which function in c can be used to append a string to another string?
Explain the term printf() and scanf() used in c language?
What is the condition that is applied with ?: Operator?
‘ C’ PROGRAME TO SHOW THE TYPE OF TRANGLE BY ACCEPTING IT’S LENGTH .
What would happen to X in this expression: X += 15; (assuming the value of X is 5)