how to write hello word without using semicolon at the end?
Answer Posted / jithneder palle
int main(void)
{
if(printf("hello world"))
}
| Is This Answer Correct ? | 9 Yes | 2 No |
Post New Answer View All Answers
Explain how do you override a defined macro?
What does c mean in basketball?
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
What are keywords in c with examples?
What is the difference between int main and void main in c?
What is the difference between declaring a variable and defining a variable?
Mention four important string handling functions in c languages .
Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
Why shouldn’t I start variable names with underscores?
Why c is known as a mother language?
What is the difference between array and structure in c?
What is the benefit of using #define to declare a constant?
Explain the difference between #include "..." And #include <...> In c?
When a c file is executed there are many files that are automatically opened what are they files?
List some of the dynamic data structures in C?