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
Define macros.
What is a static function in c?
what is a constant pointer in C
What are the different types of pointers used in c language?
Explain which function in c can be used to append a string to another string?
Explain how can I make sure that my program is the only one accessing a file?
Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
What is c language used for?
Write a factorial program using C.
Why we use int main and void main?
Why string is used in c?
How many types of arrays are there in c?
What is the size of structure in c?
Explain modulus operator.