8
C ++ में आगे की घोषणाएं क्या हैं?
पर: http://www.learncpp.com/cpp-tutorial/19-header-files/ निम्नलिखित का उल्लेख किया गया है: add.cpp: int add(int x, int y) { return x + y; } main.cpp: #include <iostream> int add(int x, int y); // forward declaration using function prototype int main() { using namespace std; cout << "The sum of 3 and 4 is " …