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
Place the #include statement must be written in the program?
What is #line?
How many data structures are there in c?
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
How does sizeof know array size?
explain what are pointers?
how to introdu5ce my self in serco
What does == mean in texting?
Tell us bitwise shift operators?
What is the difference between c &c++?
How can you access memory located at a certain address?
Why we use int main and void main?
What is calloc() function?
Why do we use pointer to pointer in c?