NO

Author Topic: pointers and arrays  (Read 8336 times)

manichandra

  • Guest
Re: pointers and arrays
« Reply #15 on: February 14, 2012, 03:16:58 AM »
y did you use "#pragma warn(disable: 2030)" in your program ? ?

CommonTater

  • Guest
Re: pointers and arrays
« Reply #16 on: February 14, 2012, 04:17:34 AM »
Notice how I copy the string...
Code: [Select]
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!