wap to print "hello world" without using the main function.
Answer Posted / kk
And some deserts for Mr. Vignesh1988i ..
For your kind attention sir.. Method main() is not the first
line in any executable... Have you ever heard of
initialization??
Yes you can say what ever the developer writes in any
program starts in main()..
| Is This Answer Correct ? | 3 Yes | 11 No |
Post New Answer View All Answers
What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers
What is character constants?
What is indirection? How many levels of pointers can you have?
What is calloc in c?
What is array in C
What is a buffer in c?
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
List some of the dynamic data structures in C?
what type of questions arrive in interview over c programming?
What is a structure in c language. how to initialise a structure in c?
How can I call a function with an argument list built up at run time?
Is null valid for pointers to functions?
What does double pointer mean in c?
What is memcpy() function?
What is return type in c?