write a program to inpu
Answers
Answered by
1
Answer:
Input using scanf()
#include "stdio.h" int main(void) { int a; printf("Please input an integer value: "); scanf("%d", &a); printf("You entered: %d\n", a); return 0; }
scanf("%s", &a);
scanf("%s", a);
Explanation:
Hope this help you.
Similar questions
Social Sciences,
2 months ago
Computer Science,
2 months ago
Environmental Sciences,
2 months ago
Physics,
3 months ago
Sociology,
3 months ago
Science,
11 months ago
English,
11 months ago