find the output of the following program
main()
{
int x=5, *p;
p=&x;
printf("%d",++*p);
}
Answer Posted / nava
TO MY KNOWLDGE
6 IS THE ANSWER
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
How many types of operators are there in c?
Write a program to swap two numbers without using a temporary variable?
Is c dynamically typed?
Explain zero based addressing.
When should I declare a function?
How to delete a node from linked list w/o using collectons?
What is structure in c language?
What are the types of data structures in c?
Which function in C can be used to append a string to another string?
What are local variables c?
How can I find out how much free space is available on disk?
What is difference between static and global variable in c?
Mention four important string handling functions in c languages .
Why header files are used?
What is table lookup in c?