Computer Science, asked by tawaseem, 11 months ago

Hey Dudes!
I am in Class XI(TNBSE) and I find C++ very difficult to understand.Is there anyone who can just explain only the basics of C++ ??
.....
Please don't give spam.This is very serious.And I've got my Board Exam by March 6.So, please help me out.
.....
I expect appropriate answers from Geniuses and Aces.​

Answers

Answered by osamahere313
1

variables-should start with an alphabet or an underscore and can contain numbers but not white spaces.

keywords-words that have special built in meaning and cannot be used as variables or identifiers.

loops-for,while and do-while

for (int i=start; i<the last number;i++)

{ }

while(condition)

{

}

do

{some expression

}while(condition is true);


tawaseem: Thanks dude!Your tiny help means a lot to me.
Similar questions