Feb 20 2008
Saving the output in a text file
Welcome to my blog
.If you’re new here, you may want to subscribe to my full RSS feed. Thanks for visiting!consider the following c program
#include<stdio.h>
#include<conio.h>
main()
{
int i,n;
clrscr();
printf(”Enter limit\n”);
scanf(”%d”,&n);
printf(”I will print %d times\n”,n);
for(i=0;i<n;i++)
printf(”I luv C\n”);
}
the output will be

