What is an example of structure?
No Answer is Posted For this Question
Be the First to Post Answer
What is floating point constants?
what is ram?
An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above
what is a far pointer
12 Answers ABB, DRDO, ITI, Maruti Suzuki, Steel Plant, TCS, Toyota, Vivo Mobiles,
what are the 10 different models of writing an addition program in C language?
swapping of two numbers without using third variable using AND and OR operators
pgm to find middle element of linklist(in efficent manner)
What are different storage class specifiers in c?
What is the heap in c?
what is array?
difference between semaphores and mutex?
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