0
website
when i write (file:///c:/sololearn/first.html) to open my website i can`t what i have to do?
2 Respostas
+ 2
You can't really open a file in the sololearn's code playground. I recommend you to do it locally on your pc
0
#include <stdio.h>
#include <stdlib.h>
int main()
{
int age,ageNY;
char name[Razvan];
printf("\nEnter initials: ");
scanf("\n%s%s%s",&name);
printf("\nEnter age: ");
scanf("\n%d",&age);
ageNY = age + 20;
printf("\nHi %s.%s.%s!, your age next year will be %d.",name,ageNY);
return 0;