My cooode is not working

My code is put in the post
It shows -
c:\program files\windowsapps\arduinollc.arduinoide_1.8.51.0_x86__mdqgnx93n4wtt\hardware\tools\avr\bin../lib/gcc/avr/7.3.0/../../../../avr/bin/ar.exe: unable to rename 'core\core.a'; reason: No such file or directory
exit status 1
Error compiling for board Arduino Uno.

What should i do pls help me as I'm a beginner

CODE- // include the library code:
#include <LiquidCrystal.h>

// initialize the library by associating any needed LCD interface pin
// with the arduino pin number it is connected to
const int rs = 12, en = 11, d4 = 5, d5 = 4, d6 = 3, d7 = 2;
LiquidCrystal lcd(rs, en, d4, d5, d6, d7);

void setup() {
// set up the LCD's number of columns and rows:
lcd.begin(16, 2);
// Print a message to the LCD.
lcd.print("Hi LameGuy");
}

void loop() {
// Turn off the display:
lcd.noDisplay();
delay(500);
// Turn on the display:
lcd.display();
delay(500);
}

Use code tags. The button looks like this: </>.

It compiles for me

It looks like something is wrong with your installation of the Arduino IDE. I can't tell what is wrong but I would remove:
c:\program files\windowsapps\arduinollc.arduinoide_1.8.51.0_x86__mdqgnx93n4wtt
and install the IDE from the Arduino site. Click on "ARDUINO.CC" in the top left corner and then click on "SOFTWARE" in the header. In the "DOWNLOAD OPTIONS" box on the right of the Software page you will find download links for various operating systems.

Thanks
so the .zip file or the app from ms store

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.