Answer Posted / purvi
a=-12
| Is This Answer Correct ? | 1 Yes | 7 No |
Post New Answer View All Answers
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
What are the application of c?
What are types of functions?
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.
What is the difference between void main and main in c?
What is the modulus operator?
What is NULL pointer?
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]
Why is void main used?
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
Difference between MAC vs. IP Addressing
What is the meaning of && in c?
Why do we use null pointer?
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?