1. first you need a compiler. you can find a free c compiler on the web. notice that it depends on your operation system. 2. write a program in any text editor. example program: #include <stdio.h> int main() { printf("Hello world\n"); return 0; } 3. save the program with .c extension ...