program for following output using for loop?
1 2 3 4 5
2 3 4 5
3 4 5
4 5
5
Answers were Sorted based on User's Feedback
Answer / dhruv sharma rkdf
#include<stdio.h>
#include<conio.h>
void main(){
int i,j;
clrscr();
for(i=1;i<=5;i++){
for(j=i;j<=5;j++){
printf("%d ",j)
}
printf("\n");
}
getch();
}
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / ep
#include <stdio.h>
int main()
{
for ( int i = 1; i <= 5 ; i++ ) {
for ( int j = i; j <= 5 ; j++ ) {
if ( i != j ) printf (" ");
printf( "%d", j );
};
printf("\n");
}
return 0;
}
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / jayaraj.s
#include <stdio.h>
main()
{
int a,b,i=1;
for(a=i;a<=5;a++)
{
for(b=a;b<=5;b++)
{
printf("%d",b);
}
printf("\n");
i++;
}
getch();
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / dhruv sharma rkdf
hello Jayaraj.s..........
your program will give the following compilation error:
"getch should have a prototype"
you need to include "conio.h" header file...
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / atul shukla
#include<stdio.h>
void main()
{
int i,j;
for (i=1;i<=5;i++)
{
for(j=i;j<=5;j++)
printf("%d ",j);
printf("\n");
}
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / letskools
I think th correct program is this for the above output
#include<stdio.h>
#include<conio.h>
void main()
{
int i,j;
clrscr();
for(i=0;i<=5;i++)
{
for(j=i;j<=5;j++)
{
printf("%d",j);
}
printf("\n");
}
getch();
}
| Is This Answer Correct ? | 2 Yes | 3 No |
Answer / rajarshi bhadra
#include<stdio.h>
#include<conio.h>
void main()
{
int i,j;
clrscr();
for(i=5;i>=0;i--)
{
for(j=1;j<=i;j++)
{
printf("%d",j);
}
printf("\n");
}
getch();
}
| Is This Answer Correct ? | 4 Yes | 7 No |
main() {char a[10]={1,2,3,4,5,6};int x; for(x=0;x<4;x++){ b[x]=x+'a';} printf("%s",b);}
What is n in c?
how to estimate the disk access time? e.g. the time between read one byte and another byte in the disk.
C program to read the integer and calculate sum and average using single dimensional array
how to add our own function in c library please give details.?
In c language can we compile a program without main() function?
Describe dynamic data structure in c programming language?
What's wrong with the call "fopen ("c:\newdir\file.dat", "r")"?
What should malloc() do? Return a null pointer or a pointer to 0 bytes?
Where local variables are stored in c?
How can you avoid including a header more than once?
Explain the difference between the local variable and global variable in c?