wap to print "hello world" without using the main function.
Answer Posted / niranjan vg
compile the above file using the following command
# gcc -nostartfiles <filename.c>
# ./a.out
| Is This Answer Correct ? | 10 Yes | 2 No |
Post New Answer View All Answers
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
Explain heap and queue.
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
How can I manipulate individual bits?
The process of repeatedly running a set of computer instructions until some condition is specifed a) condition b) sequential condition c) global d) iteration
how to make a scientific calculater ?
How do you determine a file’s attributes?
Why pointers are used in c?
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 ].
Hai sir, I had planned to write the NIC scientific engineer exam , plz post the sample question......
What does the characters “r” and “w” mean when writing programs that will make use of files?
what is use of malloc and calloc?
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
What is the easiest sorting method to use?
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop