Re: [Csnd-dev] [EXTERNAL] [Csnd-dev] strange string behaviour

joachim heintz <[email protected]> Sun, 14 Sep 2025 09:00:50 +0900
Newsgroups gmane.comp.audio.csound.devel
Message-ID <[email protected]>
yes but there is only one cycle because of the turnoff.
so why is it repeating the string?

this code gets the same result although it clearly should only run one 
cycle:
   Snew = ""
   if timeinstk() == 1 then
     Sline = sprintfk("%s%d\n",Snew,1)
     Snew = strcatk(Snew,Sline)
     printf("Sline = \n%s\n",1,Sline)
     printf("Snew = \n%s\n",1,Snew)
   endif

i tried several versions and it has something to do with the line
   Snew = ""

i will try to get closer and then file an issue.

On 13/09/2025 23:35, Victor Lazzarini wrote:
> is printf running at perf time? the string opcodes are "k"
> Prof. Victor Lazzarini
> Maynooth University
> Ireland
> 
>> On 13 Sep 2025, at 15:11, joachim heintz <[email protected]> wrote:
>>
>> due to strange problems with an old csd i came to this:
>>
>> instr 1
>>   Snew = ""
>>   Sline = sprintfk("%s%d\n",Snew,1)
>>   Snew = strcatk(Snew,Sline)
>>   printf("Sline = \n%s\n",1,Sline)
>>   printf("Snew = \n%s\n",1,Snew)
>>   turnoff
>> endin
>> schedule(1,0,1)
>>
>> i expect Sline to be 1 and Snew also.  but as printout shows:
>> Sline =
>> 1
>> 1
>> Snew =
>> 1
>> 1
>> 1
>>
>> am i doing something silly, or what is happening here?