May 7, 2007 #1 S shahzad ahmad Junior Member level 1 Joined Dec 21, 2004 Messages 17 Helped 10 Reputation 20 Reaction score 0 Trophy points 1,281 Activity points 107 how to change the stack size in c when ur using c and the ide i am using is microsoft visual studio 6
how to change the stack size in c when ur using c and the ide i am using is microsoft visual studio 6
May 8, 2007 #2 A agent_009 Member level 2 Joined Dec 17, 2006 Messages 47 Helped 10 Reputation 20 Reaction score 3 Trophy points 1,288 Activity points 1,563 Go to Project->Settings Under the C/C++ tab, there are 'Project Options' In these options there is a switch /F. You have to change the value that is followed by /F. By default it is /FD You have to speicfy stack size in bytes For example: To make stack size 1024 bytes, use /F1024
Go to Project->Settings Under the C/C++ tab, there are 'Project Options' In these options there is a switch /F. You have to change the value that is followed by /F. By default it is /FD You have to speicfy stack size in bytes For example: To make stack size 1024 bytes, use /F1024