+ 1

Can we develop simple software ?

I mean to ask you all that . If I say I can develop a software to add two number which can me install like other software then would you all laugh at me ?😒. If no then tell me how can I develop code of C program into small software which I can I install like a game or any other program .

18th Jul 2019, 2:40 PM
Suman Shah
Suman Shah - avatar
1 Answer
+ 1
How you get your natively written application installed depends on the operating system. For a tiny program that just adds numbers together, you should be able to make a completely independent exe file or executable binary. The installation process could be as simple as just asking people to save the binary file and running it any time they want to launch your application. If it was more complex, asking people to download and extract a zip file could work too. If you want to get fancy and configure the installation process complete with a custom logo, desktop icon... you can use some existing tools to make an "installer". For Windows, https://wixtoolset.org/ seems like a good set of tools for creating an installer.
18th Jul 2019, 4:56 PM
Josh Greig
Josh Greig - avatar