#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 does printf does?
Why use int main instead of void main?
can anyone suggest some site name..where i can get some good data structure puzzles???
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
Can a local variable be volatile in c?
In which header file is the null macro defined?
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
What is table lookup in c?
Explain about block scope in c?
Can you tell me how to check whether a linked list is circular?
what is the difference between north western polytechnique university and your applied colleges?? please give ur answers for this. :)
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.
Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college. 1.write a function to print names of all students who joined in a particular year 2.write a function to print the data of a student whose roll number is given
What is an lvalue in c?
What is the difference between typedef struct and struct?