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 / traphunter

a=101n(*p)=101n

answer c)

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;

1126


find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2

1529


What is the difference between the = symbol and == symbol?

629


what are bit fields? What is the use of bit fields in a structure declaration?

1499


What do you mean by c?

589






how to create duplicate link list using C???

2075


What is a pointer and how it is initialized?

609


What is a header file?

638


The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this

2935


Explain what are header files and explain what are its uses in c programming?

626


What are integer variable, floating-point variable and character variable?

609


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?

1600


Explain what is a pragma?

594


Why C language is a procedural language?

623


Mention four important string handling functions in c languages .

630