Tell us the size of a float variable.
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to display the following output using a single cout statement Maths=90 Physics=77 Chemistry = 69
Explain the difference between C and C++.
Write a C++ Program to Find whether given Number is Odd or Even.
Write a C++ Program to Find Sum and Average of n numbers using for loop.
What is a memory leak in C++?
Identify the errors in the following program. #include <iostream> using namespace std; void main() { int i=5; while(i) { switch(i) { default: case 4: case 5: break; case 1: continue; case 2: case 3: break; } i-; } }
What is conversion constructor in C++
What is latest update of C++ ?
What is placement new?
What is static variable and difference between(const char *p,char const *p,const char* const p).
To solve the 8 Queens problem, which algorithm is used?
What does malloc return in C and C++?