#include <stdio.h>
#include <string.h>
typedef struct {
char name[50];
char country[50];
int isStudent;
} MyProfile;
int main(){
MyProfile Profile;
strcpy(Profile.name, "Silvio Otávio");
strcpy(Profile.country, "Brazil");
Profile.isStudent = 1;
printf("My name is %s\n", Profile.name);
printf("I am from %s\n", Profile.country);
if(Profile.isStudent == 1){
printf("I am a computer science student\n");
}
return 0;
}
🏠
Working from home
Highlights
- Pro
Pinned Loading
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.