Hello, im going for a calculation-program that im going to code in some C language.
Now to my question; C++ or C# ?
Thanks for your help.
Now to my question; C++ or C# ?
Thanks for your help.
| Makslahti wrote: |
| Hello, im going for a calculation-program that im going to code in some C language.
Now to my question; C++ or C# ? Thanks for your help. |
| Code: |
| public class HelloWorld
{ public static void main(String[] args) { System.out.println("Hello, world!"); } } // ------------------ class HelloWorld { static void Main() { System.Console.WriteLine("Hello, world!"); } } |