24.4k views
2 votes
List 5 different programming languages calls to print

User Gaf King
by
7.9k points

2 Answers

0 votes
In Python, you can call print(string)
In C, you can call printf(string);
In PHP, you can call echo string; OR print(string);
In Java, you can call System.out.println(string);
In C#, you can call Console.WriteLine(string);
User Rahularyansharma
by
7.7k points
2 votes
print
echo
<p></p>
put
These call prints
User Svintus
by
7.9k points