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 structure and union in c?
How many parameters should a function have?
How is null defined in c?
What is fflush() function?
Why ca not I do something like this?
What is the full form of getch?
Tell us bitwise shift operators?
Are pointers really faster than arrays?
What is calloc() function?
What is ## preprocessor operator in c?
What do you understand by normalization of pointers?
How can I write a function that takes a format string and a variable number of arguments?
Differentiate between calloc and malloc.
What are the different types of C instructions?
List the variables are used for writing doubly linked list program.