For Loop in C Programming | Tutorial for beginners ( HINDI )

Source code for this Tutorial


#include <stdio.h>
#include <stdlib.h>

int main()
{

 int counter,counter2;
 
 for(counter = 1,counter2 = 10; (counter <= 10 && counter2 >= 1); counter++,counter2--){
  printf("%d --> %d --> LearningLad Rocks\n",counter,counter2);
 }

 
return 0;

}