Computer Science, asked by patipiyush343534, 4 days ago

how is the control string of scanf() different than the control string of printf ()?​

Answers

Answered by profimask2021
1

Answer:

printf it is a command in c that is used to print any statement

scanf is a command to give input by the user

Explanation:

if you are text editor you try this

#include<studio.h>

int main(){

printf("hellow world");

return 0;

than the output wI'll be hellow world

Similar questions