pun.c

#include <stdio.h>

int main(void)
{
    printf("To C, or not to C: that is the question.\\n");
    return 0;
}

What does <stdio.h> mean & do?

Why do we add void to the int main(){} function decleration?

Why do we return 0; in every main(){} function?


What are the 3 stages that occurs when we convert our .c code into an .exe executable?

What are Integrated Development Environment (IDEs) for?