C CODER-- Code to plot Graphs using C language || TechCode ||

#####C CODE TO PLOT GRAPHS USING C LANGUAGE#####

***For detailed video visit my YouTube Channel TECHFOSHA***

Link

https://www.youtube.com/channel/UCAUYSumPObksbn8Q8iVzyHw



***CODE***


          #include<stdio.h>
          #include<stdlib.h>
          int main()
         {                          
          int x,y;
           for(y=10;y>=-10;y--)
          {
               for(x=-10;x<=10;x++)
                  {
                        if(y==(x-1)*(5-x))
                            {
                                printf("* ");
                            }
                        else
                           {
                               printf("  ");
                           }
                  }printf("\n");
          }
           return 0;

          }


Previous Post Next Post