Answers for "como somar em C"

C
0

como somar em C

1 #include <stdio.h>
   2 
   3 int main(void)
   4 {
   5     int a, b, c;
   6     scanf("%d", &a);
   7     scanf("%d", &b);
   8     c = a + b;
   9     printf("%d\n", c);
  10     return 0;
  11 }
Posted by: Guest on May-17-2021

Code answers related to "C"

Browse Popular Code Answers by Language