how to print this sereis 2 4 3 6 5..........?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / taz
2 3 5 is prime number & 4 after 2, 6 after 3...is two times
of previous number.
| Is This Answer Correct ? | 0 Yes | 1 No |
What are external variables in c?
write a proram to reverse the string using switch case?
what is the difference between const volatile int i & volatile const int j;
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.
What is indirect recursion? give an example?
Why c is called free form language?
What is the scope of global variable in c?
Can static variables be declared in a header file?
Which control loop is recommended if you have to execute set of statements for fixed number of times?
What are the advantages of using new operator as compared to the function malloc ()?
Why array starts with index 0
What is the difference between procedural and functional programming?