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 / guest
D)
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
What are the benefits of organizational structure?
What are static variables in c?
What does int main () mean?
What are the uses of a pointer?
Explain what is the advantage of a random access file?
Write a program for finding factorial of a number.
how do you execute a c program in unix.
What is #include cctype?
how to find binary of number?
What are header files in c?
Are global variables static in c?
The __________ attribute is used to announce variables based on definitions of columns in a table?
Does free set pointer to null?
A c program to display count values from 0 to 100 and flash each digit for a secong.reset the counter after it reaches 100.use for loop,. pls guys hepl me.. :(
What is a pointer on a pointer in c programming language?