C言語をVusial Studio Coadで実行用としたのですがこのようなエラーが出ました。
解決方法がわかる方いたら教えてください。
#<プログラム>
#######include <stdio.h>
int main(){
printf("ようこそ\n");
}
##実行結果
Copyright (C) Microsoft Corporation. All rights reserved.
新しいクロスプラットフォームの PowerShell をお試しください https://aka.ms/pscore6
PS C:\C program> cd "c:\C program" ; if ($?) { gcc test } ; if ($?) { .\test }
gcc.exe: error: test: No such file or directory
gcc.exe: fatal error: no input files
compilation terminated.
PS C:\C program> cd "c:\C program" ; if ($?) { gcc test } ; if ($?) { .\test }
gcc.exe: error: test: No such file or directory
gcc.exe: fatal error: no input files
compilation terminated.
PS C:\C program> cd "c:\C program" ; if ($?) { gcc hoge } ; if ($?) { .\hoge }
gcc.exe: error: hoge: No such file or directory
gcc.exe: fatal error: no input files
compilation terminated.
PS C:\C program> cd "c:\C program" ; if ($?) { gcc hello } ; if ($?) { .\hello }
gcc.exe: error: hello: No such file or directory
gcc.exe: fatal error: no input files
compilation terminated.
PS C:\C program>
あなたの回答
tips
プレビュー