Computer Science, asked by nittuthakur27, 3 months ago

what are the syntax of printing statement in a programming language.​

Answers

Answered by profdambaldor
1

Answer:

A print "statement" is actually a call to the print or println method of the System.out object.

Explanation:

Answered by sameeksha261204
3

It is different for different programming languages

In java:

System.out.println();

or

System.out.print();

In python:

print([matter or variable you want to print])

In c++;

cout<<["Words to be printed"]<<[variable name];

I have put square brackets[] only to tell what we can write at the specific place it is not written with the syntax.

Similar questions