0
I have written some code after that what will be the next step? What to do next? How can I build a software?
I have written some code in C language and I am confuse how to build a software? After writting some code. I am not getting the clearity in this topic.
2 ответов
+ 1
Thanks to both of you for helping me I will definitely do what you have said.
0
You can write them in a mobile ide and use the "build and run" option OR
You would need to turn the code to an executable object file. Say you're in the command line in the same directory that you <name>.c file is at:
gcc <name>.c -o <new_object_filename>
// then to run code
./<new_object_filename>