study the code:
#include<stdio.h>
void main()
{
const int a=100;
int *p;
p=&a;
(*p)++;
printf("a=%dn(*p)=%dn",a,*p);
}
What is printed?
A)100,101 B)100,100 C)101,101 D)None of the
above
Answer Posted / y hussain reddy
101 ,101
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain argument and its types.
The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this
How do I read the arrow keys? What about function keys?
Is c high or low level?
Explain enumerated types in c language?
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. 2) the Event Manager has to send participants to the stage to perform in the order in which they registered. Write a program that will help the Event Manager know who to call to the stage to perform. The Logic should be in Data Structures
How do I use strcmp?
What is c programming structure?
How does normalization of huge pointer works?
Why do we use namespace feature?
Can a variable be both constant and volatile?
What does nil mean in c?
i have to apply for rbi before that i need to know the the syllabus for the entrance questions. whethet it may be aps or techinical
What is the difference between functions abs() and fabs()?
Can we assign integer value to char in c?