I cannot compile and run after reinstalling the Pelles 64bit system twice. Here is an example code that worked well two days ago but now gives message :-
/* Example using strcat by TechOnTheNet.com */
#include <stdio.h>
#include <string.h>
int main(int argc, const char * argv[])
{
/* Define a temporary variable */
char example[600];
/* Copy the first string into the variable */
strcpy(example, "TechOnTheNet.com ");
/* Concatenate the following two string s to the end of the first one */
strcat(example, "is just over 10 ");
strcat(example, "years old.");
strcat (example, " David tests this routine.");
/* Display the concatenated strings */
printf("%s\n", example);
return 0;
}
//Building main.obj.
//*** Error: pocc.exe -Tx64-coff -Ot -W1 -std:C11 "C:\Users\David\Documents\Pelles C Projects\strcat\main.c" -Fo"C:\Users\David\Documents\Pelles C Projects\strcat\output\main.obj"
//*** Error: The requested operation requires elevation.
//Done.
Any guidance is appreciated?