#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 the difference between procedural and declarative language?
Describe static function with its usage?
Describe the order of precedence with regards to operators in C.
Do you know the use of fflush() function?
On most computers additional memory that is accessed through an adapter of feature card along with a device driver program. a) user memory b) conventional memory c) expandedmemory d) area
Hi can anyone tell what is a start up code?
What is the size of empty structure in c?
what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values
Why dont c comments nest?
How are portions of a program disabled in demo versions?
Why static is used in c?
What is the role of && operator in a program code?
"C" language developed by "Dennis Ritchie" at AT & T. his remarks are a) too general, too abstract b) could deal with only specific problems c) lost generality of BCPL and B restored d) no remarks
Write a code of a general series where the next element is the sum of last k terms.
any "C" function by default returns an a) int value b) float value c) char value d) a & b