OK,
Just a little, I'll explain youl, Remember JUST A LITTLE
This is a classic "Hello World!" application.
noz92, your age is very young, it was a good age to learn programming.
I learned it since I was 12 years old (Now, I'm 13).
As you know C, C++ and C# are DIFFERENT (C and C++ not too different) :
For example :
C# (Courrently I use Visual C# .NET 2003)
using System;
class HelloWorld
{
static void Main()
{
Console.WriteLine("Hello World!");
Console.WriteLine("Type a word [i.e. q], then press enter to exit!");
Console.Write("... ");
Console.ReadLine();
}
}
C/C++ (Currently I use Dev-C++ BETA 5 R 9 (4.9.9.2) with GCC 3.4.2)
#include <iostream>
using namespace std;
int main() {
int quit;
cout << "HelloWorld!" << endl;
cout << "Type a word [i.e. q], then press enter to exit!" << endl;
cout << "... ";
cin >> quit;
return 0;
}
C and C++ developed by DELL LABS
and C# is a Visual Basic alike PL but syntax is like C/C++. Developed by Microsoft.
--