Skip to content

N0tFake/N0tFake

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 

Repository files navigation

Typing SVG

#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;
}

React Flutter Python Js Ts HTML CSS

Snake animation

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published