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
What is extern c used for?
Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.
I need testPalindrome and removeSpace
#include
What are the valid places to have keyword “break”?
What do you mean by scope of a variable in c?
What is class and object in c?
What are the loops in c?
What is a #include preprocessor?
What is the advantage of using #define to declare a constant?
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.
Explain how do you override a defined macro?
What are control structures? What are the different types?
Describe the order of precedence with regards to operators in C.
What is ponter?