Answer Posted / iamdluffy
something like
for(n=2;n<somenumber;n++)
{
print n;
print n*2;
n=n-1;
}
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
What is equivalent to ++i+++j?
Explain what is the difference between null and nul?
What is the difference between pure virtual function and virtual function?
What are the uses of null pointers?
What is the use of getch ()?
What are the rules for the identifier?
What is a good way to implement complex numbers in c?
What is calloc malloc realloc in c?
What is strcmp in c?
What are the different properties of variable number of arguments?
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?
In which header file is the null macro defined?
What does c mean in standard form?
Is calloc better than malloc?
write a program to concatenation the string using switch case?