find the output of the following program
main()
{
int x=5, *p;
p=&x;
printf("%d",++*p);
}
Answer Posted / visalakshi
yes it is six
| Is This Answer Correct ? | 11 Yes | 0 No |
Post New Answer View All Answers
What is the time and space complexities of merge sort and when is it preferred over quick sort?
Write a program on swapping (100, 50)
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
What the different types of arrays in c?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
What are the benefits of organizational structure?
write a program to concatenation the string using switch case?
Where static variables are stored in c?
What are the different data types in C?
What is this pointer in c plus plus?
What is a c token and types of c tokens?
What is the difference between struct and union in C?
What is the use of in c?
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none
What are type modifiers in c?