実現したいこと
#include <stdio.h>
void main()
{
printf("Hello World!\n");
}
これを動作させたいです。
発生している問題・分からないこと
PS Microsoft.PowerShell.Core\FileSystem::\wsl.localhost\Debian\home\tgkkn> cd "\wsl.localhost\Debian\home\tgkkn" ; if ($?) { gcc HelloWorld.c -o HelloWorld } ; if ($?) { .\HelloWorld }
C:/Program Files/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/14.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: cannot open output file HelloWorld.exe: Invalid argument
collect2.exe: error: ld returned 1 exit status
ターミナルにこう出てしまいます何が何だか分かりません
該当のソースコード
C
1#include <stdio.h> 2void main() 3{ 4 printf("Hello World!\n"); 5}
試したこと・調べたこと
- teratailやGoogle等で検索した
- ソースコードを自分なりに変更した
- 知人に聞いた
- その他
上記の詳細・結果
cd "\wsl.localhost\Debian\home\tgkkn" ; if ($?) { gcc HelloWorld.c -o HelloWorld } ; if ($?) { .\HelloWorld }
C:/Program Files/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/14.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: cannot open output file HelloWorld.exe: Invalid argument
collect2.exe: error: ld returned 1 exit status
結果はこう出てしまいます
補足
大学ではDebian上でgedit を起動してコードを打つ形式で講義が進められているのですがSVcodeの方が良いと説明されたのでできればこちらでできるようになりたいです。調べたら出てくる初心者向けのc言語とVScodeの環境構築のサイトになぞらえて環境構築しました。
回答2件
あなたの回答
tips
プレビュー