Program to check a number is positive negative or zero
#include<stdio.h>
#include<conio.h>
void main()
{
int a;
clrscr();
printf("Enter a numbern");
scanF("%d",&a);
if(a>0)
printf("n positive number n");
...
Program to check given number is odd or even
#include<stdio.h>
#include<conio.h>
void main()
{
int a; /* for any integer */
clrscr();
printf("Enter a number n");
...
program to largest of two numbers
#include<stdio.h>
#include<conio.h>
void main()
{
int a,b; /* for two numbers a & b */
...
Program to largest and equal of two numbers
#include<stdio.h>
#include<conio.h>
void main()
{
int a,b; /* for two numbers a & b */
clrscr();
...
Program to illustrate trigonometric function
#include<stdio.h>
#include<conio.h>
#include<math.h>
void main()
{
int n;
float f;
clrscr();
printf(" enter angle in...
Program to calculate electricity bill
#include<stdio.h>
#include<conio.h>
void main()
{
float bill,rate;
int prev,prs,tu; /* previous meter reading, present meter reading...
Program to calculate sales man salary
#include<stdio.h>
#include<conio.h>
void main()
{
float amount, sal, price;
int qty;
clrscr();
...
Program to take amount as Rupee and paise and print it as paise
#include<stdio.h>
#include<conio.h>
void main()
{
float rp;
int r,p;
clrscr() ;
printf("n Enter amount n") ;
...
Conditional Statements
We have studied some of the preliminary concepts in c programming, which are essential for writing simple programs involving simple arithmetic expressions in the...
Program to perform all arithmetic operations on two integers
#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,c; /* a,b for input and c for result */
clrscr();
printf("enter two integersn);
...