#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
Is c is a procedural language?
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
Write a program to generate the Fibinocci Series
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
Suggesting that there can be 62 seconds in a minute?
What is new line escape sequence?
Explain pointer. What are function pointers in C?
Differentiate between functions getch() and getche().
Create a structure to specify data on students as given below: Roll number, Name, Department, Course, and Year of joining. Assume that there are not more than 450 students in the collage. (a) Write a function to print the names of all students who joined in the last 3 years. (b) Write a function to print the data of a student whose roll numbers are divisible by 4.
Explain how can I read and write comma-delimited text?
What is bubble sort in c?
What is return in c programming?
What is a MAC Address?
Describe the steps to insert data into a singly linked list.
Is there a way to compare two structure variables?