how to write hello word without using semicolon at the end?
Answer Posted / ramu gurram
#include<stdio.h>
void main()
{
if(printf("hello world"))
{
}
}
| Is This Answer Correct ? | 10 Yes | 1 No |
Post New Answer View All Answers
Explain modulus operator. What are the restrictions of a modulus operator?
Where local variables are stored in c?
Explain how do you view the path?
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
How many levels of indirection in pointers can you have in a single declaration?
Write a C program linear.c that creates a sequence of
processes with a given length. By
sequence it is meant that each created process has exactly
one child.
Let's look at some example outputs for the program.
Here the entire process sequence consists of process 18181:
Sara@dell:~/OSSS$ ./linear 1
Creating process sequence of length 1.
18181 begins the sequence.
An example for a sequence of length three:
Sara@dell:~/OSSS$ ./linear 3
Creating process sequence of length 3.
18233 begins the sequence.
18234 is child of 18233
18235 is child of 18234
........ this is coad .... BUt i could not compleate it .....:(
#include
Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result
Describe the order of precedence with regards to operators in C.
How can a program be made to print the line number where an error occurs?
Can I initialize unions?
in ‘C’ language for Matrix Multiplication fails” Introspect the causes for its failure and write down the possible reasons for its failure.
What is #define?
What is the purpose of the preprocessor directive error?
what are non standard function in c
Why do we write return 0 in c?