Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of Zorgatone

Zorgatone

Zorgatone has asked 11 questions and find answers to 7 problems.

Stats

158
EtPoint
20
Vote count
11
questions
7
answers

About

I just love code, and I like C and JavaScript.

At the moment I'm a student at the Polytechnic University of Turin, and I also work as a Web & App Developer at Reload Srl. I make hybrid apps for smartphones using cordova and ionic (with HTML/CSS/JavaScript).

NerdTests.com says I'm a Highly Dorky High Nerd.  Click here to take the Nerd Test, get nerdy images and jokes, and write on the nerd forum! I am nerdier than 95% of all people. Are you a nerd? Click here to take the Nerd Test, get geeky images and jokes, and write on the nerd forum!

helloworld.c:

/*
* File: helloworld.c
* Description: Greets the StackExchange community
*/

#include <stdio.h>

int main(void) {
    puts("Hello, World!");

    return 0;
}