find the output of the following program
main()
{
int x=5, *p;
p=&x;
printf("%d",++*p);
}
Answer Posted / dilip
6
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Do you know what are the properties of union in c?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
Explain what is #line used for?
How can you check to see whether a symbol is defined?
What is the best style for code layout in c?
What is storage class?
Which header file should you include if you are to develop a function which can accept variable number of arguments?
What is line in c preprocessor?
find out largest elemant of diagonalmatrix
What is sizeof int in c?
why we wont use '&' sing in aceesing the string using scanf
Where in memory are my variables stored?
What is the data segment that is followed by c?
What is the difference between procedural and functional programming?
what are the different storage classes in c?