ភាសាកម្មវិធី C++៖ សង្ខេប
សង្ខេបភាសាកម្មវិធី C++ The overview of C++ ១ . តើភាសាកម្មវិធី C++ ជាអ្វី ? ភាសាកម្មវិធី C ឬ C++ ជាភាសាកម្មវិធី ( programming language ) ដែលគេសរសេរសម្រាប់បង្កើតកម្មវិធីឱ្យមានដំណើរការលើកុំព្យូទ័រដ៏មានប្រសិទ្ធិភាពដែលអនុញ្ញាតអោយកុំព្យូទ័រ ធ្វើអ្វីមួយជាក់លាក់និងត្រឹមត្រូវ ។ ២ . ប្រវត្តិភាសាកម្មវិធី C++ ភាសាកម្មវិធី C ++ ត្រូវបានចាប់ផ្តើមនៅឆ្នាំ ១៩៧៩ បង្កើតឡើងដោយលោក ប៊ីយ៉ានឹស ស្ត្រូវស្ត្រុប Bjarne Stroustrup ( / ˈ bj ɑː rn ə ˈ stra ʊ str ʊ p/ ; Danish: [ ˈ bja ː n ə ˈ st ʁʌ w ˀ st ʁɔ p] ; កើតនៅថ្ងៃទី៣០ ខែធ្នូ ឆ្នាំ១៩៥០ ) នៅមន្ទីពិសោធន៍ប៊ែល ( Bell Labs) ក្នុងស្រុក មូរ៉េហ៊ីល ( Murray Hill) រដ្ឋញូជឺស៊ី ( New Jersey) សហរដ្ឋអាមេរិកដើម្បីបង្កើនលើកកំពស់ភាសាកម្មវិធី C និងដាក់ឈ្មោះដំបូងថាភាសាកម្មវិធី C with Classes ប៉ុន្តែក្រោយមក ភាសាកម្មវិធី C ត្រូវបានប្តូរឈ្មោះជាភាសាកម្មវិធី C ++ វិញនៅឆ្នាំ ១៩៨៣ ។ លោក Bjarne Stroustrup ជាអ្នកវិទ្យាសាស្ត្រកុំព្យូទ័រជនជាតិដាណឺម៉ាក ( Danish computer scientist )។ ការបញ្ចេញសំឡេងឈ្មោះរបស់គាត់ ( Bjarne St...
Submitted
ReplyDeleteExercise 1
ReplyDeleteInsert the missing part of the code below to display "Hello World!":
cout<<"Hello world!";
return 0;
}
Exercise 2
By using a special character, insert a new line after "Hello World":
cout << "Hello World! \n";
cout << "I am learning C++";
return 0;
}
Exercise 3 Insert the missing parts, Comments in C++ are written with special characters. Insert the missing parts:
/ This is a single-l i ne comment
/This is a muti-l i ne comment *
Ex3: It should be /*This is a single-l i ne comment
Delete*This is a muti-l i ne comment*/
Thanks!!!