DO NOT MISS

Ads

Saturday 13 August 2016

Program 7 (Format 7) Using Nested For Loop


#include<stdio.h>
#include<conio.h>

void main()

         {

              int i,j;
              clrscr();

             
for(i=1;i<=3;i++)
                    {
                         for(j=1;j<=3;j++)

                         if(i==j)

                         printf("%3d",1);
                         else
                         printf("%3d",0);
                         printf("\n");

                    }

              getch();

          }
___________________________________________________________________________
>> Back to 28 C-Programs Using Nested for

Greataims

 
Copyright © 2016 Computersadda. Designed by @ Computersadda Team - Published By Greataims