Posts by João Carvalho • 7 points
2 posts
-
0
votes1
answer288
viewsQ: Pass values by reference C
I have to make a program with options menu that allows me to read a student’s information, write their name and phone after entering their student number, and determine how many students are older…
-
-1
votes3
answers13060
viewsA: How to add all the numbers in the sequence in while?
You are printing all numbers with this program. You need to create a variable (in my case, "sum") that joins all numbers. #include <stdio.h> int main(){ int numero = 0; int soma = 0;…