what are # pragma staments?
No Answer is Posted For this Question
Be the First to Post Answer
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
wat is the difference between array and pointer?
how to go with this?
How many bytes are occupied by near, far and huge pointers (dos)?
Why is main function so important?
Explain what are the standard predefined macros?
There seem to be a few missing operators ..
FIND THE OUTPUT IF THE INPUT IS 5 5.75 void main() { int i=1; float f=2.25; scanf("%d%f",&i,&f); printf("%d %f",,i,f); } ANSWER IS 5 AND 2.25 WHY?
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
what is the need for main function in c?
Explain the use of bit fieild.
What do you mean by command line argument?