C program with output 50-C का 50 प्रोग्राम आउटपुट के साथ

हेल्लो दोस्तों आज के इस पोस्ट आज के इस पोस्ट में आपको c program in hindi के बारे में आपको बताया जा रहा है  तो चलिए शुरू करते है 1.pattern #include<stdio.h> #include<conio.h>  void main()  {   int i,j;  clrscr();   for(i=1;i<=5;i++)   {    for(j=1;j<=5;j++)    {     printf(“*”); // put any character    }     printf(“\n”);    }  getch();  } output 2.pattern … Read more