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 |
Disadvantages of C language.
how can f be used for both float and double arguments in printf? Are not they different types?
what is recursion in C
. Consider the following program main() { int a[5]={1,3,6,7,0}; int *b; b=&a[2]; } The value of b[-1] is (A) 1 (B) 3 (C) -6 (D) none
Explain the difference between malloc() and calloc() in c?
c programs are converted into machine language with the help of a) an interpreter b) a compiler c) an operatinf system d) none of the above
Why do we use & in c?
Is this program statement valid? INT = 10.50;
swapping of two numbers without using third variable using AND and OR operators
Explain how do you declare an array that will hold more than 64kb of data?
Explain data types & how many data types supported by c?
Is it possible to initialize a variable at the time it was declared?