Posts by Geovane Damasceno • 33 points
2 posts
-
1
votes1
answer742
viewsQ: What is the difference between defining a model as an interface or as a class in IONIC?
I am a beginner in programming and my input language is Java. Studying some projects with Ionic, I found one that used an interface to define a model, for example: export interface Pessoa { nome:…
-
2
votes1
answer789
viewsQ: How to remove and rename directories in C language?
To create a directory I used the mkdir(const char*) function and to remove I tried to use remove(const char*),as below: void remove_diretorio() { char nome_pasta[10]; printf("Informe o nome da…