Write a program to print "hello world" without using a semicolon?
Answer / Nidhi Paswan
In C language, it is possible to write a program that prints "hello world" without using a semicolon. However, it's not recommended due to the potential for confusion and errors. Here's an example:
```c
#include <stdio.h>
int main(void) {
printf("hello world");
return 0;
}
```
In this code, the printf function call prints "hello world" to the console without a semicolon.
| Is This Answer Correct ? | 0 Yes | 0 No |
what is the difference between i++ and ++i?
What does 2n 4c mean?
What is an example of enumeration?
to find the program of matrix multiplication using arrays
What is scanf_s in c?
What is the proper way of these job Tell me about there full work
here is a link to download Let_Us_C_-_Yashwant_Kanetkar
What are the types of data structures in c?
What is 1d array in c?
What is an lvalue?
How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?
Which type of language is c?