I found this following code for addition of two numbers without using the + operator.
+
code to add 3 and 4:
printf(\"%d\",printf(\"%*c%*c
The inner printf outputs 3 then 4 spaces and returns the number of characters, which is 7, and the outer printf is printing that result.
printf