Guys, below is my code. I have created the directory, I have made sure it is not read only. But still kicks out
fatal error C1083: Cannot open precompiled header file: 'Debug/Ch 2 Ex 14.pch': Permission denied
Any ideas on how to fix?
#include "stdafx.h"
#include <stdio.h> /* needed for printf and scanf */
int main(void)
{
int a=1, b=2, c=3;
a += b += c += 7;
/* (a +=( b += (c += 7))) */ /* values of a=13, b=12, & c=10 */
printf ("%d,%d,%d, &a, &b, &c") ;
}