hello..
Can anybody tell me how to remove the linker error as mentioned above..
i have created a simple program in C++ as given below
i saved it with name ABC.cpp.after compiling above program, it shows no errors, that means it get compiled successfully. but when I try to run this program it shows a Linker error ABC.exe file not found.
Please help me out whats the problem and how to remove it....
Can anybody tell me how to remove the linker error as mentioned above..
i have created a simple program in C++ as given below
Code:
#include<iostream.h> #include<conio.h> class ABC { private: int a; public: void show() { cout<<"enter value of a:"; cin>>a; cout<<"a="<<a; } }; void main() { ABC a; a.show(); getch(); }
Please help me out whats the problem and how to remove it....
Comment