+ 1
How to give Input in C?
In python we use simply input(). I am new in C. So how we give Input in C? I can't understanding it in C!
4 Respuestas
+ 1
But when we use like
Int number;
Scanf("%d", &number)
Is it valid?
It doesnt work
+ 10
Ashik Ahmed first letter of scanf and int will be in small letters
+ 2
scanf() is used.
for eg if we want to input value to an integer a .its like...
scanf("%d",&a);
+ 2
Ashik Ahmed put your code in code- playground > save and share the link here scan not Scan etc...
Its more convenient for you to understand and for us to explain;)
Input & Output 👍
https://www.sololearn.com/learn/C/2914/