Dec 10, 2007 #1 R rameshbabu Member level 2 Joined Aug 1, 2007 Messages 46 Helped 0 Reputation 0 Reaction score 0 Trophy points 1,286 Activity points 1,663 C Can a simple printf statement uses the stack memory in C language.
Dec 13, 2007 #2 S SWINI Member level 3 Joined Mar 19, 2007 Messages 58 Helped 5 Reputation 10 Reaction score 3 Trophy points 1,288 Activity points 1,555 Re: C i think it won't take space...
Dec 13, 2007 #3 B btbass Advanced Member level 5 Joined Jul 20, 2001 Messages 1,896 Helped 438 Reputation 880 Reaction score 288 Trophy points 1,363 Location Oberon Activity points 12,887 C The arguments are passed on the stack and the stack is used during function execution. The printf is quite a large library routine that is linked in to your code if you call it.
C The arguments are passed on the stack and the stack is used during function execution. The printf is quite a large library routine that is linked in to your code if you call it.
Dec 20, 2007 #4 N Nahian Member level 3 Joined Aug 1, 2007 Messages 64 Helped 6 Reputation 12 Reaction score 0 Trophy points 1,286 Activity points 1,604 Re: C No in one word;....i think u asked in sense of stack variable.