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 difference between struct and typedef struct in c?
What is 2 d array in c?
Explain what are the standard predefined macros?
Write a program to swap two numbers without using third variable?
What is the difference between malloc calloc and realloc in c?
What is the difference between array and pointer?
Explain what are the advantages and disadvantages of a heap?
Explain the use of #pragma exit?
What header files do I need in order to define the standard library functions I use?
Describe the order of precedence with regards to operators in C.
Why doesnt the call scanf work?
How do we make a global variable accessible across files? Explain the extern keyword?
What are linker error?
How to write a multi-statement macro?
What is a pointer in c plus plus?