GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN
MEMORY ? CAN ANYONE EXPLAIN??
THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS:
1 BIT-SIGN
8 BITS-EXPONENT
23 BITS-MANTISSA
No Answer is Posted For this Question
Be the First to Post Answer
#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\n",x,y); swap2(x,y); printf("%d %d\n",x,y); } int swap2(int a,int b) { int temp; temp=a; b=a; a=temp; return; } what are the outputs?
explain memory layout of a C program
what will be the out put. #include<stdio.h> void main() { printf("Output:"); printf(1+"vikashpatel"); }//output: ikashpatel
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
What are control structures? What are the different types?
Are pointers integer?
Tell me about low level programming languages.
please send me papers for Dy. manager IT , PNB. it would be a great help for me.
Example of friendly function in c++
why do some people write if(0 == x) instead of if(x == 0)?
can we write a program in c for printf and scanf without using header file stdio.h
simple program of graphics and thier outpu display with a want what is out put of graohics in c language