Skip to content

Commit 518ef6d

Browse files
#TDP - 12 Path to file
Change from C:\\... to name.txt
1 parent 98cc493 commit 518ef6d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

MethodsDevelopmentTranslator.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ using namespace std;
2828
int main(int argc, char* argv[])
2929
{
3030
ifstream fileC;
31-
ofstream fileAnalysis("C:\\Users\\swat5\\source\\repos\\StrongerProgrammer7\\MethodsDevelopmentTranslator\\lexical.txt");
31+
ofstream fileAnalysis("lexical.txt");
3232
fileC.exceptions(ifstream::badbit);
3333
try
3434
{
35-
fileC.open("C:\\Users\\swat5\\source\\repos\\StrongerProgrammer7\\MethodsDevelopmentTranslator\\C.txt");
35+
fileC.open("C.txt");
3636

3737
if (fileC.is_open())
3838
{

0 commit comments

Comments
 (0)