Answer Posted / vignesh1988i
as for i know in C , we cant write a program wit out main()..
since whatever function we write (user defining functions).
it will start executing the statements only from the
main().... so only we will say tht FIRST EXECUTABLE FUNCTION
IS THE MAIN() FUNCTION.........
| Is This Answer Correct ? | 4 Yes | 3 No |
Post New Answer View All Answers
Why does the call char scanf work?
What is the difference between typedef and #define?
What are operators in c?
Which function in C can be used to append a string to another string?
Is anything faster than c?
What is the meaning of && in c?
how do you programme Carrier Sense Multiple Access
What is the difference between fread and fwrite function?
Is javascript written in c?
Write a program on swapping (100, 50)
Explain high-order bytes.
What is a stream in c programming?
Which one would you prefer - a macro or a function?
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
Can a function argument have default value?