how to write hello word without using semicolon at the end?
Answer Posted / @bhi
echo "Hello World" //shell script
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the purpose of type declarations?
Explain bitwise shift operators?
int far *near * p; means
What is the purpose of void pointer?
Can math operations be performed on a void pointer?
Explain what is the difference between text files and binary files?
How can I find the modification date and time of a file?
Is there any demerits of using pointer?
What are pointers? What are different types of pointers?
what is stack , heap ,code segment,and data segment
How can you call a function, given its name as a string?
What does 3 periods mean in texting?
Write a program to print fibonacci series using recursion?
What is the difference between a function and a method in c?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }