C program to check whether a number entered by user is even or odd.
#include <stdio.h>
int main(){
int num;
...
C++ Program to calculate simple interest.
C++ Program to calculate simple interest.
#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
float a,b,c,d,e;
cout<<"Enter...
C++ Program to check if a year is a leap year.
C++ Program to check if a year is a leap year.
#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
int a,b;
cout<<"Enter...
C++ Program to square an even number or cube an odd number.
C++ Program to square an even number or cube an odd number.
#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
int...
C++ Program to add 2 numbers and tell if it's odd/even.
C++ Program to add 2 numbers and tell if it's odd/even.
#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
int a,b;
...
C++ Program to swap values of two variable without using third.
C++ Program to swap values of two variable without using third.
#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
...
C++ Program to display the sum of this series: 1+1/2+1/3....1/n.
C++ Program to display the sum of this series: 1+1/2+1/3....1/n.
#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
...
Subscribe to:
Posts (Atom)