Use Flowcharts(Tip) on Oct 7, 2009FLOWCHARTUse a flowchart to represent the logic of your program before coding.This will reduce lot of redundancy and helps improve your logic. In fact, even if you don't use a flow chart, but sure to spend some time thinking about your program design...
C Program to calculate roots of quadratic equations on Mar 20, 2009C Program to calculate roots of quadratic equationsThis is a simple C program to calculate roots of quadratic equations.A function sqrt() is used in this program to find the square root.#include main(){ int a,b,c,d; float root1,...
Program to Propose a girl(Funny) on Feb 5, 2009Ok guys lets have a fun break here ;-)Here's a program to Propose a Girl/*Program to Propose a girl*/#include STD ISD PCO.h#include mobile.h#include sms.h#include love.h#define Cute beautiful_ladymain(){goto college;scanf("100%",&ladies);if(lady...
Program to Propose a girl(Funny) on Feb 5, 2009Ok guys lets have a fun break here ;-)Here's a program to Propose a Girl/*Program to Propose a girl*/#include STD ISD PCO.h#include mobile.h#include sms.h#include love.h#define Cute beautiful_ladymain(){goto college;scanf("100%",&la
C Program using While loop to Convert Fahrenheit to Celsius on Jan 29, 2009 in Loops This is a C program to convert Fahrenheit to Celcius.Let us take a look at the program .This can be easily accomplished with a for loop or a while loop: #include int main(){ int a; a = 0; while (a...
Inpu-output functions(Formatted) on Jan 27, 2009 in Inpu-output functions Formatted FunctionsThe formatted functions used in C programming are printf and scanf functions.Printf prints the formatted output on screen as specified in format specifier.This function can also be used for displaying all the datatype variables.e.g...
While loop Program-Convert Fahrenheit to Celsius on Jan 27, 2009 in Loops Let us take a look at the program that converts and prints Fahrenheit-to-Celsius .This can be easily accomplished with a for loop or a while loop: #include int main(){ int a; a = 0; while (a...
Basic Variables on Jan 27, 2009 in Basic Variables As a programmer, you will frequently want your program to "remember" a value. For example, if your program requests a value from the user, or if it calculates a value, you will want to remember it somewhere so you can use it later.This post will show...
Inpu-Output functions(Unformatted) on Jan 27, 2009 in Inpu-output functions The C environment assumes that the standard input device(keyboard) and the standard output device(Monitor) are always connected to the C environment.Here's a list of some unformatted functions used in C along with their uses.Input / OutputFunctionsUn...
© BlogTopsites.com 2004-2009. Contact Us.