Answer Posted / piyush
It depends on the compiler we are working on.
if it is 32 bit compiler:(GCC)
integer is 4 bytes
for 18 bit compiler:(Turboc)
integer is 2 bytes
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
write a program to find the given number is prime or not
#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }
What are the preprocessor categories?
Explain the term printf() and scanf() used in c language?
Can you explain the four storage classes in C?
Is the exit() function same as the return statement? Explain.
What does the file stdio.h contain?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
What functions are in conio h?
Write a program to check prime number in c programming?
What are pointers?
Explain how are 16- and 32-bit numbers stored?
What is the most efficient way to count the number of bits which are set in an integer?
What is the use of in c?
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]