Скачиваний:
2
Добавлен:
25.01.2023
Размер:
411 б
Скачать
// start
#include <iostream>

/* Below is the test of c-style comments */

/*

test of ignoring // cpp-style comments in c-style

*/

using namespace std;
int main() {
    // the test of comment with null length
//
// test of cpp-style comment // inside another cpp-style comment //
    cout << "
    9 // 2 = 
    " << 9 / 2 << endl; // test of ingoring // in strings
    return 0;
} // end
Соседние файлы в папке Курсовая про замену комментариев