find the output of the following program
main()
{
int x=5, *p;
p=&x;
printf("%d",++*p);
}

Answers were Sorted based on User's Feedback



find the output of the following program main() { int x=5, *p; p=&x; prin..

Answer / guest

6

Is This Answer Correct ?    103 Yes 4 No

find the output of the following program main() { int x=5, *p; p=&x; prin..

Answer / rahul khare

6
becoz it(++*p) will evaluate like this-
1)
*(p)- gives value at this address that is 5
2)
now increment ++5
that is 6.

Is This Answer Correct ?    37 Yes 1 No

find the output of the following program main() { int x=5, *p; p=&x; prin..

Answer / lrishna

ya ans is 6.

Is This Answer Correct ?    32 Yes 7 No

find the output of the following program main() { int x=5, *p; p=&x; prin..

Answer / vignesh1988i

the answer is 6...since ++ as well as * gets the same
prority so the associativity will be right to left.. so it
will point to the value and then increment the value

Is This Answer Correct ?    23 Yes 3 No

find the output of the following program main() { int x=5, *p; p=&x; prin..

Answer / rajeesh

Six -6

Is This Answer Correct ?    15 Yes 3 No

find the output of the following program main() { int x=5, *p; p=&x; prin..

Answer / visalakshi

yes it is six

Is This Answer Correct ?    11 Yes 0 No

find the output of the following program main() { int x=5, *p; p=&x; prin..

Answer / manishsoni

main()
{
int x=5, *p;
p=&x;
printf("%d",++*p);
}
it allocate as this

____ _____
x| |value p | | store &x
| 5 | | 100 |
|____| |_____|
____ _____
|100 |&x | 200 |&p p is pointer //at statement ++*p
|____| |_____|
^ ^
|________________|
and jumpt at 5 bcoz it is prefix for firstof all 5 is
increase then print

Is This Answer Correct ?    7 Yes 2 No

find the output of the following program main() { int x=5, *p; p=&x; prin..

Answer / ganesh auti,pune

6

Is This Answer Correct ?    6 Yes 2 No

find the output of the following program main() { int x=5, *p; p=&x; prin..

Answer / nava

TO MY KNOWLDGE
6 IS THE ANSWER

Is This Answer Correct ?    3 Yes 0 No

find the output of the following program main() { int x=5, *p; p=&x; prin..

Answer / dilip

6

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More C Interview Questions

what is difference between ++(*p) and (*p)++

17 Answers   Accenture, HCL, IBM,


What is the difference b/w Structure & Union?

3 Answers  


what are bitwise shift operators?

4 Answers  


Explain c preprocessor?

0 Answers  


What is the scope of an external variable in c?

0 Answers  






How can I convert a number to a string?

0 Answers  


differentiate built-in functions and user – defined functions.

0 Answers  


print the following using nested for loop. 5 4 3 2 1 1 2 3 4 3 2 1 1 2 1 2 1 1 2 3 4 3 2 1 1 2 3 4 5

7 Answers   IBM,


Is it possible to initialize a variable at the time it was declared?

0 Answers  


How is a macro different from a function?

0 Answers   Tech Mahindra,


What is the benefit of using #define to declare a constant?

0 Answers  


When was c language developed?

0 Answers  


Categories