N
nick
I want to print something without a '\n' automatically added at the end,
I know
print 1,
print 2,
print 3,
can partially solve the problem. But it added an space behind each
variable. So the statements above will print out:
1 2 3
instead of
123
Any way that I can just use it as printf in C?
I know
print 1,
print 2,
print 3,
can partially solve the problem. But it added an space behind each
variable. So the statements above will print out:
1 2 3
instead of
123
Any way that I can just use it as printf in C?