wap to print "hello world" without using the main function.
Answer Posted / sivasankar
#include<stdio.h>
#include<conio.h>
#define ksrct main()
ksrct
{
clrscr();
printf("hello world");
getch();
}
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What is meant by errors and debugging?
Using which language Test cases are added in .ptu file of RTRT unit testing???
How can a string be converted to a number?
What are the different types of constants?
Explain what is output redirection?
Do pointers need to be initialized?
What is a structure and why it is used?
What does the characters “r” and “w” mean when writing programs that will make use of files?
Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 10 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.
How is a pointer variable declared?
What are different types of operators?
What are the two types of functions in c?
Compare and contrast compilers from interpreters.
What is a header file?
What is typedef?