find the output of the following program
main()
{
int x=5, *p;
p=&x;
printf("%d",++*p);
}
Answer Posted / lrishna
ya ans is 6.
| Is This Answer Correct ? | 32 Yes | 7 No |
Post New Answer View All Answers
Which is better oop or procedural?
what are enumerations in C
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
How can I find out how much free space is available on disk?
Which is an example of a structural homology?
Who developed c language and when?
Explain how do you search data in a data file using random access method?
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above
What is the most efficient way to count the number of bits which are set in an integer?
What are the preprocessor categories?
List some applications of c programming language?
Explain the binary height balanced tree?
Explain how can you tell whether two strings are the same?
What is the c language function prototype?
What is unary operator?