pointers and arrays

Started by manichandra, February 12, 2012, 05:09:05 AM

Previous topic - Next topic

manichandra

y did you use "#pragma warn(disable: 2030)" in your program ? ?

CommonTater

Notice how I copy the string...

while ( *dst++ = *src++);

It works, but it produces a warning... in this case a false warning, so I turned it off. 

Look in the help file...
Contents -> Command Line Tools -> POCC compiler -> Compiler Pragmas
for a full listing of all pragmas the compiler understands.

The help file is your friend!