Showing posts with label c language tutorials. Show all posts
Showing posts with label c language tutorials. Show all posts

Sunday, 6 October 2013

Creating A C++ Program

How to Create a C++ program?? In this C tutorial for beginners, we are going to learn how to create C++ programs with output. After studying previous tutorials, we now have the basic and required concepts needed to create a C++ program. A C++ program is a collection of function, one of which is the function main. A function is a set of instructions designed to accomplish specific task. We’ll deal with functions in further tutorials in detail. The syntax of the function main is: int main(){    Statement 1   ...