+ 2
Single line command in C
As far as I've known, Python has also the ability to perform arithmetic operation in just a single line command. Like >>> print (123 + 12) and would print the sum = 136. My question is, how would it be possible to make this happen by using C? Can anyone give me the implementation code for this please? :)
2 odpowiedzi
+ 3
printf(123 + 12);