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
How can I delete a file?
How can I handle floating-point exceptions gracefully?
Can a pointer be null?
What is pointers in c with example?
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
What is openmp in c?
What is a far pointer in c?
What is the newline escape sequence?
Why c is a mother language?
Is anything faster than c?
What are the types of operators in c?
Can you mix old-style and new-style function syntax?
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
Explain union.