Last active
April 21, 2022 15:00
-
-
Save sorin-ref/ac30cc13f54d5152794fee6539ded0ab to your computer and use it in GitHub Desktop.
Programe C simple
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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