I will start a new project. But I have some simple questions about it :
1) Is the C faster than Java on processes which has no graphic user interfaces (like softwares which are working just from command line) ?
2)Because if the C is faster than Java, I want to make a software which has GUI as Java and C on background processes!? Is this possible ? If it is possible it will work on every OS or not ?
3)What are the differences between 32 bit and 64 bit operation systems ? How can I know that my software will work on 32 or 64 bit ? And especially how much bytes takes an integer on 64 bit and 32 bit exactly ? Or can we do softwares flexible, so they can work on every different 16, 32, 64... systems ? (I know that 32 bit softwares are working on 64 bit windows but there is no possible this some other operation systems :( )
4)How I can start two different process (or functions) at the same time on my software? For example:
if( myinteger== 3) { myfunction1(); myfunction2(); }
I want to start two functions at the same time!
Thanks!