#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
Explain about the functions strcat() and strcmp()?
Is c procedural or object oriented?
What is a loop?
How is = symbol different from == symbol in c programming?
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
WHICH TYPE OF JOBS WE GET BY WRITING GROUPS .WHEN THE EXAMS CONDUCTED IS THIS EXAMS ARE CONDUCTED EVERY YEAR OR NOT.PLS TELL ME THE ANSWER
Explain how can I right-justify a string?
Write a C program to count the number of email on text
Can you please explain the difference between malloc() and calloc() function?
What is switch in c?
What is c definition?
What is pointer to pointer in c with example?
What is data types?
I need a sort of an approximate strcmp routine?
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping