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 the advantage of c?
What is a floating point in c?
What type is sizeof?
What is the difference between constant pointer and constant variable?
Why is event driven programming or procedural programming, better within specific scenario?
Why c is called free form language?
What does != Mean in c?
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
What is the difference between the local variable and global variable in c?
What does void main return?
How can I find the modification date of a file?
Write a c program to build a heap method using Pointer to function and pointer to structure ?
Write a program of advanced Fibonacci series.
In c programming language, how many parameters can be passed to a function ?
Are the variables argc and argv are always local to main?