What is fast input output? | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
+ 2

What is fast input output?

14th Dec 2016, 8:43 PM
Avinash Gupta
Avinash Gupta - avatar
1 Réponse
+ 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