can any body tell me how to learn codes of c++
Answers
Answer:
watch you tube videos and do practicals of each and everything than things would be easier.
hope it helps.......
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!