Coding language c++

c++

here we are publishing the first coding language for the beginner-->

ABOUT CODING;-

Coding is nothig else a language of computer.As like web speak in english ,hindi, bengali etc, this are our language ,but when we need to speak with computer we need to learn a computer language .

Now we can not speak directly with the computer so we need a compailor which helps us to convert our language to computer language because computer just knows only two word 1&2.

compailor takes our words and convert it in 1&2 .So The process of writing our word in compailor is called coding . 

for coding we need to learn various language like phthon,java,c++,for various espect .

Oue first coding language name is c++
๐Ÿ‘€ this is the first program of c++-:-->

main program with output image here๐Ÿ‘‡



how to write the code๐Ÿ‘‡

//this is the first code written by arpan;
/*who is saying
hellow to the
coding world*/
#include<iostream>
using namespace std;
int main(){
    cout<<"hellow world,"<< endl;
    cout<<"i am arpan,\n";
//here ednl is using for creat a blank line(enter)
cout<<"learning the besic of c++.\n\n";
cout<<"using the pw tutorials\t";
cout<<"it's a great language to learn\\";
cout<<"it started on 1997\"";
cout<<"now we using it in many devolopment work\".";
/*\n also a carecter which makes a blank line like endl
and \n\n makes 2 blank line,
\t creats a horaijontal tab(space),
\\ insert a backslash caracter,
\" inserts a quote caracter(") */
    return 0;
}
we use "//"or "/*..*/" for comment out the word or sentance from the code

Comments

Popular posts from this blog