web analytics

Download Turbo C++ for windows 7 32Bit & 64Bit

Want to run Turbo C++ in windows 7, full screen mode ! Download it form here:

Caclulate Area, Diameter

main () { system (“cls”); to clear your screen float radius, area, diameter, cf; cout <<”Please enterĀ  your radius value:” cin >> radius; area = 3.14 * (radius*radius); cout <<”Area of a Circle = “<<area; getch; }

Rules for Naming Variables 1

Follow these rules when naming variables: A variable name must be of the form $name or ${name}. The string name can consist of letters (a-z and A-Z), numbers (0-9), and underscore characters (_). The first character of name must be an alphabetic character (a-z or A-Z). If the ${name} form is used, spaces can also ...

DATA TYPES IN C

In the C programming language, data types refers to an extensive system for declaring variables of different types. The language itself provides basic arithmetic types and syntax to build array and compound types. Several headers in the standard library contain definitions of support types, that have additional properties, such as exact size, guaranteed

Fundamental of Data types in C++

When programming, we store the variables in our computer’s memory, but the computer has to know what kind of data we want to store in them, since it is not going to occupy the same amount of memory to store a simple number than to store a single letter or a large number, and they ...

Site last updated April 9, 2013 @ 3:05 pm