Gigacore
Dreamweaver
Hi guys n gals,
If you are a good at C/C++ Programming or if you are a programmer or just know this language then post you Programs here. By this way it helps learners a lot. Members can post their programs and get suggestions if there is anything wrong it......
Use this Pattern:
A Program to find the largest of three numbers using nested if
==================================================
List of all the C Programs posted in this thread..
==================================================
● A Program to find the largest of three numbers using nested if.
● A program to findcalc area, surface area, volume, total surface area etc. of numerous 2D and 3D figures using functions.
● A Program to perform basic calculations.
● Program To Reverse a Number
● What is this?
● A Program that Binary, Decimal, Octal Inter-Conversions
● A bulls and cows game
● A program that selects a number which is of 4 digits and all are unique numbers.
● Write a C Program to sort numbers of an Array using Bubble Sort Method.
● Reusable java class to send email through pop3
● Simple Switch-Case Example.
● Swapping of two numbers without a Temporary variable in 1 line.
● A program that creates a vB list out of a file given in a particular format.
● Digit Forum URL Bulleted List Generator
● Write a C program to find an element from an Array using Binary Search Method.
● TOWER OF HANOI Simulator
● A Simple C Program to read and print a one-dimensional array
● C Program to find the largest element in an array and the position of its occurrence.
● A C program to find the maximum and minimum elements in an array having N elements
● Program which compares two strings, concatenate them and then gives the length of string.
● Program to kill a software /demo version expire in C
● Program To arrange numbers in Pyramid Pattern
● Program: a simple shop using string, integers, float, & algebraic operators
● Character Eater
● Program to insert a node in a single linked list.
● A C Program to convert decimal number to its Binary Number Equivalent
● Introduction to C++ - Stanford Video Tutorials and Other Lectures (Not a program)
● A Program to remind that u r using other account
● Typedef Example Program
● A C Program to check whether a given word is Palindrome or not.
● A Simple C Program to Display the number and its square from 1 to 10 using register variable.
● A C Program to find the sum of two matrix using two dimensional array.
● TURBO CALC 15000
● A Command Line Calculator.
● Function 2 input a matrix
● Read an int & an int array & search for that int in the int array & return its position.
● Python version of the above program.
● Program to perform operations on a binary search tree.
● Program to calculate the computer sales man salary. (Correction)
● Basic Inventory tracker software program code.
● Sudoku
● Simple DOS Text-based alien shooter game
● A program for unit conversions.
===========================================
Last Update: 12 August 2008
--------------------------------------------------------
Some good free C/C++ Compilers
● Relo
● Bloodshed Dev C++
● GCC
● Borland C++ 5.5
● MinGW
● Open Watcom
If you are a good at C/C++ Programming or if you are a programmer or just know this language then post you Programs here. By this way it helps learners a lot. Members can post their programs and get suggestions if there is anything wrong it......
Use this Pattern:
A Program to find the largest of three numbers using nested if
Code:
#include <stdio.h>
main()
{
int a,b,c,big;
printf("Enter Three numbers");
scanf("%d%d%d",&a,&b,&c);
if(a>b)
if(a>c)
big=a;
else
big=c;
else
if(b>c)
big=b;
else
big=c;
printf("Largest of %d,%d and %d = %d",a,b,c,big);
return 0;
}
List of all the C Programs posted in this thread..
==================================================
● A Program to find the largest of three numbers using nested if.
● A program to findcalc area, surface area, volume, total surface area etc. of numerous 2D and 3D figures using functions.
● A Program to perform basic calculations.
● Program To Reverse a Number
● What is this?
● A Program that Binary, Decimal, Octal Inter-Conversions
● A bulls and cows game
● A program that selects a number which is of 4 digits and all are unique numbers.
● Write a C Program to sort numbers of an Array using Bubble Sort Method.
● Reusable java class to send email through pop3
● Simple Switch-Case Example.
● Swapping of two numbers without a Temporary variable in 1 line.
● A program that creates a vB list out of a file given in a particular format.
● Digit Forum URL Bulleted List Generator
● Write a C program to find an element from an Array using Binary Search Method.
● TOWER OF HANOI Simulator
● A Simple C Program to read and print a one-dimensional array
● C Program to find the largest element in an array and the position of its occurrence.
● A C program to find the maximum and minimum elements in an array having N elements
● Program which compares two strings, concatenate them and then gives the length of string.
● Program to kill a software /demo version expire in C
● Program To arrange numbers in Pyramid Pattern
● Program: a simple shop using string, integers, float, & algebraic operators
● Character Eater
● Program to insert a node in a single linked list.
● A C Program to convert decimal number to its Binary Number Equivalent
● Introduction to C++ - Stanford Video Tutorials and Other Lectures (Not a program)
● A Program to remind that u r using other account
● Typedef Example Program
● A C Program to check whether a given word is Palindrome or not.
● A Simple C Program to Display the number and its square from 1 to 10 using register variable.
● A C Program to find the sum of two matrix using two dimensional array.
● TURBO CALC 15000
● A Command Line Calculator.
● Function 2 input a matrix
● Read an int & an int array & search for that int in the int array & return its position.
● Python version of the above program.
● Program to perform operations on a binary search tree.
● Program to calculate the computer sales man salary. (Correction)
● Basic Inventory tracker software program code.
● Sudoku
● Simple DOS Text-based alien shooter game
● A program for unit conversions.
===========================================
Last Update: 12 August 2008
--------------------------------------------------------
Some good free C/C++ Compilers
● Relo
● Bloodshed Dev C++
● GCC
● Borland C++ 5.5
● MinGW
● Open Watcom
Last edited by a moderator: