how to find the size of the data type like int,float
without using the sizeof operator?
Answer Posted / amit ranjan
int main()
{
int a[2];
int one = a;
int two = a+1;
int test = two-one;
printf("%d\n", test);
return 0;
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is getch c?
write a program for the normal snake games find in most of the mobiles.
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
Can we use visual studio for c?
Is it possible to have a function as a parameter in another function?
Explain null pointer.
Is c easier than java?
find out largest elemant of diagonalmatrix
Explain what are header files and explain what are its uses in c programming?
What is wrong with this statement? Myname = 'robin';
Where we use clrscr in c?
How do you define CONSTANT in C?
Do you know what are bitwise shift operators in c programming?
what value is returned to operating system after program execution?
What is static function in c?