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
No Answer is Posted For this Question
Be the First to Post Answer
Is c high or low level?
CopyBits(x,p,n,y) copy n LSBs from y to x starting LSB at 'p'th position.
compare array with pointer?
What does double pointer mean in c?
What is define directive?
What is the purpose of clrscr () printf () and getch ()?
What are the back slash character constants or escape sequence charactersavailable in c?
write a program of bubble sort using pointer?
struct node { int *a; char *b; char array[12]; }; struct node m,*n; assign the value in *a,*b,char array[12]
which one of follwoing will read a character from keyboard and store in c a)c=getc() b)c=getchar() c)c=getchar(stdin) d)getc(&c) e)none
create an SINGLE LINKED LISTS and reverse the data in the lists completely
how does the C compiler interpret the following two statements p=p+x; q=q+y; a.p=p+x; q=q+y b.p=p+xq=q+y c.p=p+xq; q=q+y d.p=p+x/q=q+y