What is fast input output? | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
+ 2

What is fast input output?

14th Dec 2016, 8:43 PM
Avinash Gupta
Avinash Gupta - avatar
1 ответ
+ 1
For fast I / O, you can use the C functions scanf / prinf: string str; int a; scanf("%s%d", &str, &a); printf("%s%d", &str, &a); OR just add ios_base::sync_with_stdio(0); to the begining main function: ios_base::sync_with_stdio(0); string str; int a; cin>>str>>a; cout<<str<<a;
14th Dec 2016, 9:04 PM
Vladimir Honcharenko
Vladimir Honcharenko - avatar