IDE Setup by T Koki
IDE Setup by T Koki
Multi-language IDEs
These IDEs are built to support many programming languages
For example, visual studio code.
Setting up coding space
After installation , open the app, you will see a space to write something.
Type the following code and run
#include <stdio.h>
int main(){
printf(“Hello world”);
return 0;
}
Don’t focus much on understanding the code because this is what you are
about to learn.
Click run on the top right corner
Expected result
The code should output “hello world” on a blank screen.