What is the output of the following program if the numbers entered are 14 and 11?
#include <stdio.h>
void main() {
int first, second;
printf("Enter two integers >");
scanf("%d %d", &first, &second);
printf(“Their sum is %d\n", first+second);
Answers
Answered by
1
Answer:
error
Explanation:
because at end there not completion of code by '}'
Similar questions