DEV Community

Keshav Kumar
Keshav Kumar

Posted on

How to write print statement syntax in Java same as C language?

There are basically 4 print statements in java,since the most used ones are
System.out.println();
System.out.print();

but there are 2 more statements, those are
System.out.printf();
System.out.format();

by using these 2 you will be able to write print statement with syntax same as C language.

Top comments (0)