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
we all know about the function overloading concept used in C++ and we all learnt abt that.... but that concept is already came in C in a very smaller propotion ... my question is IN WHICH CONCEPT THERE IS A USE OF FUNCTION OVERLOADING IS USED in C language?????????????
What will be your course of action for a push operation?
#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
5) Write a program that takes a 3 digit number n and finds out whether the number 2^n + 1 is prime, or if it is not prime find out its factors.without using big int and exponential function
Write a program to generate prime factors of a given integer?
Write a C program where input is: "My name is xyz". output is: "xyz is name My".
What is the use of ?: Operator?
write a c program to remove all the duplicate characters in a string and replace with single character? ex:-input- AAABBBCCC output- ABC
what is the hexidecimal number of 4100?
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
write a function to swap an array a[5] elements like a[0] as a[5],a[1] as a[4],....a[5] as a[0].without using more than one loop and use one array not to use temp array?
wat are the two methods for swapping two numbers without using temp variable??