Wandbox
SettingsLog
SettingsLog
Language
GitHubLogin
Ran/Viewed Log

Viewed less than a minute ago

8rrYIadCKM64Vv52

C# mcs 6.12.0.122

Created at 3 minutes ago

Created by anonymous

Author

anonymous

3 minutes ago

Language

C#

Compiler

mcs 6.12.0.122

Options

Author

anonymous

3 minutes ago

›
9
1
2
3
4
5
6
7
8
using System;

public class Test {
public static void Main(){
Console.WriteLine("sizeof(int) = {0}", sizeof(int));
Console.WriteLine("sizeof(long) = {0}", sizeof(long));
}
}
$ mcs -out:prog.exe prog.cs
sizeof(int) = 4
sizeof(long) = 8
Exit Code:
0