Which is the memory area not included in C program? give the
reason
No Answer is Posted For this Question
Be the First to Post Answer
character array A[12] can hold
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above
What does *p++ do? What does it point to?
What is double pointer?
#include<stdio.h> void main() { int a=5,b=6,c; int x=(a<b)+7; int y=(x==7)*9; int z=(c=x+y)*2; printf("%h %h %h",x,y,z); } What is the output? Explain it.
can we write a program in c for printf and scanf without using header file stdio.h
Can we change the value of constant variable in c?
How pointer is different from array?
What is meant by global static? why we have to use static variable instead of Global variable
Explain the concept and use of type void.
What is structure of c program?
The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none