tags:

views:

64

answers:

2

Hi,

How would i licence my c command line program, e.g limited functionality without a serial number?

+1  A: 

Include a EULA (End User License Agreement) in your program which users will have to accept while installing/using your application. You can get lots of sample EULAs in Internet. Replace the Names appropriately. But remember, you are gonna do things at your own risk. Read the EULA well, modify it to suit your needs.

1s2a3n4j5e6e7v
+2  A: 

Depends what licensing means ...

Write the license text into the source code resp. show the license text when installing or starting the program.

If you want prevent users from copying the program, things get complicated, you might need some hardware dongle.

Or just make it GPL and give the source code away ...