Forum: C Mar 5th, 2007 |
| Replies: 10 Views: 3,808 TRY THIS OUT
#include<stdio.h>
main()
{
int i,j,k;
printf("\n");
for(i=1;i<=10;i++)
{ |
Forum: C Feb 22nd, 2007 |
| Replies: 6 Views: 4,103 This is a simple problem.
U have to specify path to include header files.
Here is the way to do it.
Open ur program window.
click options at the top.
click directories.
In include directories u... |
Forum: C Feb 21st, 2007 |
| Replies: 7 Views: 5,073 /* This program is for checking a single integer*/
#include<stdio.h>
#include<stdlib.h>
main()
{
int a,i;
printf("\nEnter a positive integer\n");
scanf("%d",&a);
if(a<=0)
{ |