Computer Science, asked by aryubadadale2023, 7 months ago

write a programme to input​

Answers

Answered by Anonymous
9

Answer:

Input using scanf()

#include "stdio.h" int main(void) { int a; printf(" input an integer value: "); scanf("%d", &a); printf("You entered: %d\n", a); return 0; }

scanf("%s", &a);

scanf("%s", a);

Input and output is terminology referring to the communication between a computer program and its user. Input is the user giving something to the program, and output is the program giving something to the user.

Answered by ayushduoking0
0

Answer:

Explanation:

input()

Similar questions