Hi!
>>>>> "Sinisa" == Sinisa Milivojevic <sinisa@stripped> writes:
Sinisa> Jocelyn Fournier writes:
>> Hi,
>>
>> Since query is defined as a const char*, is this possible to change its
>> value ??
>>
>> Regards,
>> Jocelyn
Sinisa> It will be changed within function body only.
To be more precise.
You can at any time change a 'const char *' pointer to point at some
other memory area.
The 'const' only guards that you don't try to modify the data the
pointer points to.
In this case we are not doing that.
Regards,
Monty