C Programming
by Al Stevens

Example 1: 

#include <cstdio>
int main()
{
    printf("\nhello, dolly");
    return 0;
}

Example 2: 

#include <cstdio>
int main()
{
    std::printf("\nhello, dolly");
    return 0;
}


Example 3: 

using System;
class Class1
{
    static void Main()
    {
        Console.WriteLine("Hello, Dolly");
    }
}


1


