Coding Beyond Technology..

Monday, 19 September 2016

Functions

Functions are small block of codes or segments or subroutine that are used to perform some operation. For example : printf() - to print message or values onto the console. scanf() - to take input from the console. getch() - to take a character from the console. and  many more.. Functions always have opening and closing brackets  " ( ) ". Syntax :   return_type function_name (...

Friday, 22 May 2015

Using namespace std in Dev C++

Using namespace std : Its clear from the above that the phase is having three words:- using- means using what?? namespace - means using a namespace Std - it is a kind of namespace Therefore, the phase defines using a namespace of kind std. Why to use it ?? The built in C++ library routine are kept in the standard namespace. That includes stuff like cout, cin, string, vector, map etc....

Main Function

Main Funtion is a function from where the execution of the program starts. It is the first function that is called to perform other operation like calling of other functions etc. Every C++ program must contain a main function. This means that a main function is a mendatory and necessary funtion and an important one. Syntax:- return_type main () {      // body } return_type can...

Tuesday, 5 May 2015

Header files and their in-built function - 2

2. conio.h - Header File Syntax:-  #include<conio.h> This is one of most important header file used in C++ after iostream.h. It means CONSOLE INPUT OUTPUT (con-io). This header file include some of the important in-built functions like: i. clrscr():  Full form is "Clear Screen".This functions is used to clear all the previous outputs generated by the program which are not of any...

Popular Posts

Recent Posts

Unordered List

Text Widget

Powered by Blogger.