abeisgreat i want to show you what you'll be dealing with. Below is a short program called "hellow World" its i C and it what you'll be doing when coding in C. I just want you to take a look at what it looks like
Code:
using System;
// A "Hello World!" program in C#
namespace HelloWorld
{
class Hello
{
static void Main()
{
System.Console.WriteLine("Hello World!");
}
}
}
// A "Hello World!" program in C#
/* A "Hello World!" program in C#.
This program displays the string "Hello World!" on the screen. */
static void Main()
{
//...
}
static void Main(string[] args)
{
//...
}using System;
Console.WriteLine("Hello World!");
This is a "small program" and still looks a bit complicated. this is what you'll be compliling into a program
pretty hard
Bookmarks