0% found this document useful (0 votes)
47 views

C For Competitive Programming - Lesson1

cours programmation C

Uploaded by

Med Nadim Touil
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF or read online on Scribd
0% found this document useful (0 votes)
47 views

C For Competitive Programming - Lesson1

cours programmation C

Uploaded by

Med Nadim Touil
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF or read online on Scribd
You are on page 1/ 2
1. Code template: Atypical C++ code for competitive programming looks like this: #include using namespace std; int main(){ MI code; } 2. Input/Output: scanf(%type,&var); == cin>>var; (cin>>varl>>..>>varN;) printf(var/"message”); == cout<