print out put like this form
1 2 3 4 5 6
3 5 7 9 11
8 12 16 20
Answer Posted / sourav das
#include<stdio.h>
#include<conio.h>
void main()
{
int i,j,k;
for(i=1;i<=6;i++)
printf("%d",i);
printf("\n");
for(j=3;j<=11;j=j+2)
printf("%d",j);
printf("\n");
for(k=8;i<=20;k=k+4)
printf("%d",k);
getch();
}
| Is This Answer Correct ? | 3 Yes | 3 No |
Post New Answer View All Answers
Write a program to find the biggest number of three numbers in c?
if p is a string contained in a string?
What is a lookup table in c?
What is structure of c program?
What is this pointer in c plus plus?
What is spaghetti programming?
Implement bit Array in C.
How many types of errors are there in c language? Explain
Explain how do you view the path?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
How can I implement sets or arrays of bits?
What is structure padding and packing in c?
1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321
The statement, int(*x[]) () what does in indicate?
Explain how can I right-justify a string?