0
Why i cant run this program ?
#include <stdio.h> void main() { printf("Hello World!!"); }
4 Réponses
+ 3
it works ok for me, btw its c/c++ code not c# as ur tag says
+ 3
it will work if your using a c or c++ complier . of course it wont work on c#
+ 2
in c# WE use Console.writeline instead of printf
+ 1
if you need it to work in C# you should make it like this :
static void main (){
Console.WriteLine ("Hello World!!");
}