wap to print "hello world" without using the main function.
Answer Posted / guest
#include<stdio.h>
#include<conio.h>
printf("hello world");
| Is This Answer Correct ? | 3 Yes | 62 No |
Post New Answer View All Answers
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.
Why is it usually a bad idea to use gets()? Suggest a workaround.
What is the size of empty structure in c?
Why is c called a structured programming language?
Which header file should you include if you are to develop a function which can accept variable number of arguments?
Write a program for finding factorial of a number.
Write a C program to count the number of email on text
What is the condition that is applied with ?: Operator?
What is the difference between #include and #include 'file' ?
explain what is an endless loop?
What is LINKED LIST? How can you access the last element in a linked list?
Explain what is the heap?
Badboy is defined who has ALL the following properties: Does not have a girlfriend and is not married. He is not more than 23 years old. The middle name should be "Singh" The last name should have more than 4 characters. The character 'a' should appear in the last name at least two times. The name of one of his brothers should be "Ram" Write a method: boolean isBadBoy(boolean hasGirlFriend , boolean isMarried, int age , String middleName , String lastName , String[] brotherName); isHaveGirlFriend is true if the person has a girlfriend isMarried is true if the person is married age is the age of the person middleName is the middle name of the person lastName is the last name of the person brotherName is the array of the names of his brothers
How main function is called in c?
What is use of pointer?