Wednesday, 30 August 2017

Number Pattern - 16

13579
3579
579
79
9


#include <stdio.h>
int main()
{
  int i,j;
  for(i=1;i<=9;i+=2)
  {
    for(j=i;j<=9;j+=2)
    {
      printf("%d",j);
    }
    printf("\n");
  }
  return 0;
}

No comments:

Post a Comment

C-Program to know whether the character is vowel or not

#include<stdio.h> int main() {   char c;   printf("Enter a character to know whether it is vowel or not\n");   scanf("...