[ create a new paste ] login | about

Link: http://codepad.org/vm9PZG3k    [ raw code | output | fork ]

C, pasted on Nov 21:
1
2
3
4
5
6
7
#include <stdio.h> // Standard C function Library such as printf
int x;             // Declaring the variable x as an integer
int main()        // Entry Point to start the main function
{
printf("Hello world \n");    // This is similar to MATLAB's fprintf
return 0;                    // Outputs a 0, mostly good practive to end
}


Output:
1
Hello world 


Create a new paste based on this one


Comments: