Posts Tagged ‘C Program’

C Program To Check Leap Year

February 28th, 2013, posted in C
Share

c program to check leap year: c code to check leap year, year will be entered by the user. Please read the leap year article before reading the code, it will help you to understand the program.

C programming code :

#include <stdio.h>

int main()
{
  int year;

  printf("Enter a year to check if it is a leap yearn");
  scanf("%d", &year);

  if ( year%400 == 0)
    printf("%d is a leap year.n", year);
  else if ( year%100 == 0)
    printf("%d is not a leap year.n", year);
  else if ( year%4 == 0 )
    printf("%d is a leap year.n", year);
  else
    printf("%d is not a leap year.n", year);  

  return 0;
}


Compiler used:

GCC

Output of program:


leap year program
Share

Write a C++ program to write number 1 to 100 in a data file NOTES.TXT

February 12th, 2013, posted in C++
Share
#include<fstream.h>

int main()
{
	ofstream fout;
	fout.open("NOTES.TXT");
	for(int i=1;i<=100;i++)
		fout<<i<<endl;
	fout.close();
	return 0;
}
Share