Skip to content

Instantly share code, notes, and snippets.

/* My multiple
line comments
goes here
*/
int a; // Declare variable 'a' as INT
a = 10; // attribute value 10 to the variable 'a'
@sauloh
sauloh / hello_shellter.c
Created September 22, 2017 21:18
Hello World Shellter
#include<stdio.h>
int main()
{
printf("HELLO WORLD - I'M CODING ON SHELLTER");
return 0;
}