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
How does pointer work in c?
Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?
Explain the use of 'auto' keyword
Explain what is page thrashing?
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.
Can a pointer be null?
How can you find out how much memory is available?
How do I swap bytes?
What is preprocessor with example?
What is sizeof c?
What is class and object in c?
What is quick sort in c?
What are derived data types in c?
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
write an algorithm to display a square matrix.