wap to print "hello world" without using the main function.
Answer Posted / siva
#include<stdio.h>
#include<conio.h>
#define siva main
siva()
{
clrscr();
printf("hello world");
getch();
return 0;
}
| Is This Answer Correct ? | 3 Yes | 5 No |
Post New Answer View All Answers
How to write a code for reverse of string without using string functions?
What does printf does?
What is the size of empty structure in c?
Differentiate between Macro and ordinary definition.
a formula,a series of steps,or well defined set of rules for solving a problem a) algorithem b) program c) erdiagram d) compiler
Can we use visual studio for c?
What is main return c?
How can you restore a redirected standard stream?
Explain the difference between call by value and call by reference in c language?
how can use subset in c program and give more example
What is file in c preprocessor?
What do you mean by a sequential access file?
what is uses of .net
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
Explain Basic concepts of C language?