find the output of the following program
main()
{
int x=5, *p;
p=&x;
printf("%d",++*p);
}
Answer Posted / guest
6
| Is This Answer Correct ? | 103 Yes | 4 No |
Post New Answer View All Answers
Differentiate between a for loop and a while loop? What are it uses?
What is the difference between array and linked list in c?
What is an arrays?
What are the types of arrays in c?
What does the && operator do in a program code?
Is the exit() function same as the return statement? Explain.
What is dynamic dispatch in c++?
Differentiate between the expression “++a” and “a++”?
what value is returned to operating system after program execution?
What does %p mean c?
Explain what is the general form of a c program?
How does selection sort work in c?
How can you call a function, given its name as a string?
What is array in c with example?
What is unary operator?