8
সি ++ এ ফরওয়ার্ড ডিক্লেয়ারেশন কি?
এ: 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 " << add(3, …