#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 / shraddhacpawar
a
| Is This Answer Correct ? | 17 Yes | 2 No |
Post New Answer View All Answers
Explain how can I open a file so that other programs can update it at the same time?
I completed my B.tech (IT). Actually I want to develop virtual object that which will change software technology in the future. To develop virtual object what course I have to take. can I any professor to help me.
What is the maximum length of an identifier?
what do you mean by enumeration constant?
What is file in c language?
What are the types of data files?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
What are void pointers in c?
Is sizeof a keyword in c?
What is oops c?
Is calloc better than malloc?
What is the heap?
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none
What does nil mean in c?
Do pointers store the address of value or the actual value of a variable?