I have written some code after that what will be the next step? What to do next? How can I build a software? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
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.

19th Nov 2021, 5:33 PM
Aman Singh
Aman Singh - avatar
2 Answers
+ 1
Thanks to both of you for helping me I will definitely do what you have said.
19th Nov 2021, 6:26 PM
Aman Singh
Aman Singh - avatar
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>
19th Nov 2021, 5:38 PM
Slick
Slick - avatar