LoginSignup
1
2

More than 5 years have passed since last update.

AndroidでC言語 teminal IDE

Last updated at Posted at 2016-01-09

Introduction

  1. Terminal IDE app from GooglePlay store
  2. Run the app
  3. Tap Install System
  4. Install system
  5. Tap Terminal IDE
  6. Enter system/bin/install_gcc
  7. Enter terminal-gcc --version

If you can see arm-eabi-gcc(GCC) [version number], that will be OK!

Hello, Wold!

  1. Enter vim hello.c
  2. Code the following(hello.c)
hello.c
#include<stdio.h>

int main(){
    puts("Hello, World!");
    return 0;
}
  1. Enter terminal-gcc -o hello hello.c
  2. Enter ./hello

If you can see Hello, World!, you will be ok.

1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2