write a C++ programming :if the no is between 32 to 50 it
will be odd.
Answers were Sorted based on User's Feedback
Answer / amit
void main()
{
int i,r;
for(i=32;i<=50;i++)
{
if(i%2!=0)
{
cout<<"odd"<<i
}
}
getch();
}
Is This Answer Correct ? | 11 Yes | 1 No |
Answer / debotri das
#include<iostream.h>
#include<conio.h>
void main()
{
int i=32;
clrscr();
while(i<=50)
{
if(i%2==0)
cout<<i<<"\n";
i++;
}
getch();
}
Is This Answer Correct ? | 8 Yes | 1 No |
Answer / devi
#include<iostream.h>
#include<conio.h>
void main()
{
int i;
clrscr();
for(i=32;i<=50;i++)
{
if(i%2==1)
{
cout<<"Odd Number is:"<<i<<endl;
}
}
getch();
}
Is This Answer Correct ? | 1 Yes | 0 No |
How do c++ struct differs from the c++ class?
What does the following code do: int c=0; cout< a) Undefined *Updated* b) 01 c) 00
What is a concrete class?
What is a NULL Macro? What is the difference between a NULL Pointer and a NULL Macro?
the first character in the variable name must be an a) special symbol b) number c) alphabet
How would you call C functions from C++ and vice versa?
class Alpha { public: char data[10000]; Alpha(); ~Alpha(); }; class Beta { public: Beta() { n = 0; } void FillData(Alpha a); private: int n; }; How do you make the above sample code more efficient? a) If possible, make the constructor for Beta private to reduce the overhead of public constructors. b) Change the return type in FillData to int to negate the implicit return conversion from "int" to "void". c) Make the destructor for Alpha virtual. d) Make the constructor for Alpha virtual. e) Pass a const reference to Alpha in FillData
Are there any new intrinsic (built-in) data types?
check whether a no is prime or not.
What are shallow and deep copy?
a class that maintains a pointer to an object that is programatically accessible through the public interface is known as?
What is atoi in c++?