前提・実現したいこと
Ⅽ言語です。
"hello,world"と表示したいのですが、WARNINGと出てしまい上手くいきません。
ご教授いただければ幸いです。
発生している問題・エラーメッセージ
WARNING: my_rennsyuu: Could not find controller file:
WARNING: my_rennsyuu: Expected either: my_rennsyuu.exe, my_rennsyuu.jar, my_rennsyuu.class, my_rennsyuu.py, or my_rennsyuu.m
INFO: my_rennsyuu: Try to compile the C/C++ source code, to get a new executable file.
WARNING: my_rennsyuu: 代わりにボイドコントローラを起動します。
INFO: void: Starting controller: "C:\Program Files\Webots\resources\projects\controllers\void\void.exe"
エラーメッセージ
### 該当のソースコード #include <stdio.h> #include <webots/robot.h> int main() { wb_robot_init(); while (wb_robot_step(64) !=-1){ printf("hello, world\n"); } wb_robot_cleanup(); return 0; }
回答2件
あなたの回答
tips
プレビュー