Posts by nazinho pb • 11 points
1 post
-
1
votes3
answers13060
viewsQ: How to add all the numbers in the sequence in while?
How to add 1 to 64 in while? I wanted to add up 1+2+3+4+...+64 print the sum value when arriving at the end. What I’ve tried so far: #include <stdlib.h> #include <stdio.h> int main(void)…