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
What is the size of a union variable?
What is multidimensional arrays
What will the preprocessor do for a program?
How do we make a global variable accessible across files? Explain the extern keyword?
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
What is the heap?
Explain what is the difference between far and near ?
What is .obj file in c?
can we have joblib in a proc ?
can we change the default calling convention in c if yes than how.........?
What is #line?
How do I round numbers?
hi any body pls give me company name interview conduct "c" language only
Can we access the array using a pointer in c language?
Why is python slower than c?