প্রশ্ন: জিসিসি সংকলক সহ একটি সি ++ প্রোগ্রাম কীভাবে সংকলন করবেন?
তথ্য.সি:
#include<iostream>
using std::cout;
using std::endl;
int main()
{
#ifdef __cplusplus
cout << "C++ compiler in use and version is " << __cplusplus << endl;
#endif
cout <<"Version is " << __STDC_VERSION__ << endl;
cout << "Hi" << __FILE__ << __LINE__ << endl;
}
এবং যখন আমি সংকলন করার চেষ্টা করি info.c
$ gcc info.C
Undefined first referenced
symbol in file
cout /var/tmp/ccPxLN2a.o
endl(ostream &) /var/tmp/ccPxLN2a.o
ostream::operator<<(ostream &(*)(ostream &))/var/tmp/ccPxLN2a.o
ostream::operator<<(int) /var/tmp/ccPxLN2a.o
ostream::operator<<(long) /var/tmp/ccPxLN2a.o
ostream::operator<<(char const *) /var/tmp/ccPxLN2a.o
ld: fatal: Symbol referencing errors. No output written to a.out
collect2: ld returned 1 exit status
জিসিসি সংকলক কি সি ++ প্রোগ্রাম সংকলন করতে সক্ষম নয়? সম্পর্কিত নোটে, gcc এবং g ++ এর মধ্যে পার্থক্য কী। ধন্যবাদ,