Answer Posted / clearner
void odddesc(int n)
{
for(int i=(2*n-1);i>=1;i=1-2)
cout<<i<<endl;
}
Is This Answer Correct ? | 5 Yes | 12 No |
Post New Answer View All Answers
Is java a c++?
What are manipulators in c++ with example?
Explain the concept of friend function in c++?
How does atoi function work?
Write a struct time where integer m, h, s are its members?
When you overload member functions, in what ways must they differ?
Write a Program to find the largest of 4 no using macros.
Is c++ a pure oop language?
What does floor mean in c++?
Which software is used for c++ programming?
How a pointer differs from a reference?
What is the arrow operator in c++?
How long does it take to get good at leetcode?
declare an array of structure where the members of the structure are integer variable float variable integer array char variable access all elements of the structure using dot operator and this pointer operator
What is a NULL Macro? What is the difference between a NULL Pointer and a NULL Macro?