Computer Science, asked by goyaljatin3829, 8 months ago

Write a program that displays hello world

Answers

Answered by akchithbalajik
0

Answer:

The stdio. h file contains functions such as scanf() and printf() to take input and display output respectively. If you use the printf() function without writing #include <stdio. ... In this program, printf() displays Hello, World!

Answered by Anonymous
3

this program is written according to java

Answer:

public class display

{

public static void main (String []args)

{

System.out.println("hello world");

}

}

Similar questions