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
What are the different data types in C?
write a program to concatenation the string using switch case?
What is signed and unsigned?
What is memcpy() function?
How to establish connection with oracle database software from c language?
What is the difference between void main and main in c?
Why is #define used?
How is a null pointer different from a dangling pointer?
Do you know what are the properties of union in c?
What is pointer to pointer in c language?
What is ambagious result in C? explain with an example.
What is a function simple definition?
What is structure pointer in c?
What is a pragma?
Are negative numbers true in c?