I have a folder containing my .c file, its executable, and another folder called Files. I need when the function below is executed the file is created in the Files folder and not in the folder where the .c and .exe are found.
char nomeDoArquivo[100] = {'char nomeDoArquivo[100] = {'%pre%'};
printf("\nDigite o nome do arquivo: ");
scanf("%s", nomeDoArquivo);
fp = fopen(("Arquivos//%s", nomeDoArquivo),"w");
'};
printf("\nDigite o nome do arquivo: ");
scanf("%s", nomeDoArquivo);
fp = fopen(("Arquivos//%s", nomeDoArquivo),"w");