Breaking News

Photo in News

Print value of Variable (static)


Read more ...

Shutdown Computer- C program


Read more ...

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++ .
Read more ...

palindrome or not- c++ program


Read more ...

Even odd- c++ program


Read more ...

Swap values of variable- c Program


Read more ...

Sum and % of 5 subjects- c program

This program will find the sum and % of 5 subjects.
Read more ...

Gross salary of the employee- c program

This program will find the Gross salary of the employee.
Read more ...

celsius to fahrenheit- c program

This program will convert the Temperature from celsius to fahrenheit 

Read more ...

simple interest- c program

This program will ask for the Pricipal, rate and time and it will gives the simple interest as output.
Read more ...

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:
Read more ...

Area of Scalene Triangle-C program

area = (s1 * s2 * sin((M_PI/180)*angle))/2
Read more ...

Area and Circumference of circle- c program

This program will get value of Radius and then print the
  • Area of circle
  • Circumference of circle
Area of circle= pi*r*r
Circumference= 2*pi*r
Read more ...

C program that reads the customer number and power consumed and prints the amount to be paid by the customer.


Read more ...

Swap values of two variables without using third variable- c program


Read more ...

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

Read more ...

Greatest number between three (if else if)- c program


Read more ...

Greater number- c program



Read more ...

even or odd- c program



Read more ...

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()
{
Read more ...

Total Pageviews

  • Posts
  • Comments
  • Pageviews
Designed By Blogger Templates