Posts by Leonardo • 38 points
2 posts
-
1
votes1
answer287
viewsA: The eclipse doesn’t recognize sdk?
In the Eclipse Menu, go to: Windows > Preferences > Android, if the adt plugin is not installed, do this, then select the Android sdk directory.
android-eclipseanswered Leonardo 38 -
1
votes2
answers1405
viewsQ: Problem with Struct in C
In that code: #include <stdio.h> #include <stdlib.h> //Usando o struct(Estruturas) struct cadastro { char nome[50]; int idade; char rua[50]; int numero; }; int main() { printf("Digite…