/*
Create a function that displays the number entered as a parameter. 
The function has to be able to display all possible values within an int type variable.
Here’s how it should be prototyped :

void ft_putnbr(int nb);

*/

#include <stdio.h>

int main() {
    printf("Hello world!\n");
    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: