Skip to content

Instantly share code, notes, and snippets.

@sorin-ref
Last active April 21, 2022 15:00
Show Gist options
  • Save sorin-ref/ac30cc13f54d5152794fee6539ded0ab to your computer and use it in GitHub Desktop.
Save sorin-ref/ac30cc13f54d5152794fee6539ded0ab to your computer and use it in GitHub Desktop.
Programe C simple
#include <stdio.h>
int main()
{
const int an_curent = 2022;
int anul_nasterii, varsta;
puts("In ce an te-ai nascut?");
scanf("%d", &anul_nasterii);
varsta = an_curent - anul_nasterii;
printf("Varsta ta este: %d\n", varsta);
return 0;
}
#include <stdio.h>
int main()
{
puts("Hello world!");
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment