Print int (-12.67) will Display the result
Answers
Answered by
1
Answer:
#include <stdio.h>
int main() {
int number;
printf("Enter an integer: ");
// reads and stores input
scanf("%d", &number);
// displays output
printf("You entered: %d", number);
return 0;
}
Similar questions
English,
4 months ago
Social Sciences,
4 months ago
Chemistry,
8 months ago
English,
8 months ago
English,
11 months ago