What does typeof return in c?
No Answer is Posted For this Question
Be the First to Post Answer
explain memory layout of a C program
What is the sizeof () a pointer?
What is the difference between the = symbol and == symbol?
What are qualifiers?
any string of bits of length 'n' represents a unique non- negative integer between.............?
difference between malloc and calloc
find the size of structure without using the size of function
What are the 4 types of unions?
What is a lookup table in c?
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300
What is extern c used for?
What is difference between constant pointer and constant variable?