Computer Science, asked by myankchoudharyp9n82w, 9 months ago

can any body tell me how to learn codes of c++​

Answers

Answered by divyamyindia271
0

Answer:

watch you tube videos and do practicals of each and everything than things would be easier.

hope it helps.......

Answered by godeaterzz1432
0

Answer:

Learn the fundamentals. Memorize each and every definition. Also for beginners just start coding from Day 1. You don't know anything then open your textbook copy and paste the codes. Suddenly the realization of not knowing things will kick off and from there you will start to learn about

#includes, #defines, int, float, double, void, {}, and several other basic things.

One program from where the journey of all the programers begins is the 'Hello World' Program.

Looks something like this,

#include<iostream.h>

#include<conio.h>

void main()

{

 clrscr();

 cout<<"Hello World!";

 getch();

}

Go now, start learning. The more you want to learn the better it gets!

Also if  possible Mark Brainliest!

Similar questions