print out put like this form
1 2 3 4 5 6
3 5 7 9 11
8 12 16 20
Answer Posted / guest
1 2 3 4 5 6 7 8 9 11 12 16 20
| Is This Answer Correct ? | 7 Yes | 7 No |
Post New Answer View All Answers
What is hash table in c?
Why do we use int main?
What are pointers?
What is pointer in c?
Is using exit() the same as using return?
What is maximum size of array in c?
#include
What is the size of array float a(10)?
What are lookup tables in c?
Write a code to generate a series where the next element is the sum of last k terms.
What is linear search?
When we use void main and int main?
Can we assign string to char pointer?
Explain how can I write functions that take a variable number of arguments?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol