Posts by Felipe Henrique • 57 points
2 posts
-
0
votes3
answers409
viewsA: Sex selector on if parole
You can do char sex; When you take the amount use scanf("%c",&sex) or scanf("%s",&sex) and to compare you use if(sex == 'm') use single quotes as it is only one character. #include…
-
1
votes1
answer498
viewsQ: What’s the difference between running and executing?
What’s the difference and when to use executeQuery() or executeUpdate()?