Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Hello,
I don't see what you mean.
Could you specify :
- The IDE you are using?
- Where are you putting the main code ? is in a main file?
class LCD{
void display(char);
};
void LCD :: display(char c){
//my code
}
#include <iostream>
using namespace std;
int main(){
LCD lcd; // Is any way to not specify hear but anywhere else in lcd.h or lcd.cpp
lcd.display(A);
return 0;
}