Translate

Showing posts with label array. Show all posts
Showing posts with label array. Show all posts

Array in C++

————————————————————————————
#include <iostream.h> //This is a simple Hello World Program.
int main()
{
cout<<”Hello World”;
return 0;
}
————————————————————————————
//This is a simple Hello World Program.
That line of code is a comment. It is useful for commenting pieces of code. You could do it to remind you about a certain thing in your program.
  • #inclu