print out put like this form
1 2 3 4 5 6
3 5 7 9 11
8 12 16 20
Answer Posted / sai
#include<stdio.h>
#include<conio.h>
void main()
{
int i;
clrscr();
for(i=1;i<=6;i++)
printf("%d ",i);
for(i=3;i<=11;i=i+2)
printf("%d ",i);
for(i=8;i<=20;i=i+4)
printf("%d ",i);
getch();
}
| Is This Answer Correct ? | 30 Yes | 5 No |
Post New Answer View All Answers
List the difference between a 'copy constructor' and a 'assignment operator' in C?
Explain the use of #pragma exit?
Write a program that accept anumber in words
Who developed c language?
how is the examination pattern?
What is the need of structure in c?
What is c system32 taskhostw exe?
Why is it that not all header files are declared in every C program?
Why c is called top down?
What is the deal on sprintf_s return value?
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
Can math operations be performed on a void pointer?
What does 3 periods mean in texting?
What is c token?
What are valid operations on pointers?