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
Should a function contain a return statement if it does not return a value?
Can we initialize extern variable in c?
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,
How will you find a duplicate number in a array without negating the nos ?
Why do we use null pointer?
How do I get a null pointer in my programs?
How to write c functions that modify head pointer of a linked list?
What is pre-emptive data structure and explain it with example?
How do I get an accurate error status return from system on ms-dos?
how to find binary of number?
Given a valid 24 hour format time find the combination of the value and write a program ,do not hard the value and if any other inputs provided should work with the logic implemented Input: 11:30 Output: 13:10 Input: 18:25 Output: 21:58
How many header files are in c?
Why & is used in c?
What are operators in c?