I am learning how to write C in Visual Studio, and here is my code,
#include<stdio.h>
int main() {
char me[20];
printf("What is your name?");
scanf_s("%s", me);
printf("darn glad to meet you, %s!\n", me);
return(0);
}
Now, after typing all that in I get an error popping up "Unhandled exception at 0xFEFEFEFE in Project14.exe: 0xC00001A5: An invalid exception handler routine has been detected (parameters: 0x00000003)"