find the output of the following program
main()
{
int x=5, *p;
p=&x;
printf("%d",++*p);
}
Answer Posted / ganesh auti,pune
6
| Is This Answer Correct ? | 6 Yes | 2 No |
Post New Answer View All Answers
What is keyword with example?
What is the description for syntax errors?
Explain what is #line used for?
application areas a 'c' a) operating system b) graphics, interpreter, assembler c) program evalution, communication softwares d) all the above
What are predefined functions in c?
When should the const modifier be used?
What is integer constants?
What is the difference between c and python?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
How do you search data in a data file using random access method?
How would you obtain the current time and difference between two times?
What are loops c?
What is array of pointers to string?
Explain how do I determine whether a character is numeric, alphabetic, and so on?
Explain output of printf("Hello World"-'A'+'B'); ?