Breaking News
Photo in News
Sum,Multiplication,Division and subtraction- c++ program
This program will use single variable to get all the four arithmetic operations i.e Addition, subtraction, multiplication and division in c++ .
Sum and % of 5 subjects- c program
This program will find the sum and % of 5 subjects.
Gross salary of the employee- c program
This program will find the Gross salary of the employee.
celsius to fahrenheit- c program
This program will convert the Temperature from celsius to fahrenheit
simple interest- c program
This program will ask for the Pricipal, rate and time and it will gives the simple interest as output.
second largest element in an array- c program
This program will ask for the size of an array and then elements of an array.
After you input the elements, it will show the second largest element in that array.
Program:
After you input the elements, it will show the second largest element in that array.
Program:
Area and Circumference of circle- c program
This program will get value of Radius and then print the
Circumference= 2*pi*r
- Area of circle
- Circumference of circle
Circumference= 2*pi*r
Area of Rectangle- c program
/*
Developed by
deepak anand.
For more
programs,
visit
programming-stuff-4-u.blogspot.in
*/
#include<stdio.h>
#include<conio.h>
void
main()
{
int
length,breadth,side;
clrscr(); // Clear Screen
printf("nEnter
the Length of Rectangle : ");
scanf("%d",&length);
printf("nEnter
the Breadth of Rectangle : ");
scanf("%d",&breadth);
area
= length * breadth;
printf("nArea
of Rectangle : %d",area);
getch();
}
Output :
Enter
the Length of Rectangle :3
Enter
the Breadth of Rectangle :4
Area
of Rectangle : 12
First program for c
/*
Developed by deepak anand.
For more programs,
visit programming-stuff-4-u.blogspot.in
*/
#include<stdio.h>
#include<conio.h>
void main()
{
Developed by deepak anand.
For more programs,
visit programming-stuff-4-u.blogspot.in
*/
#include<stdio.h>
#include<conio.h>
void main()
{
Subscribe to:
Posts (Atom)
Total Pageviews
-
…
Posts -
…
Comments -
…
Pageviews