c - Converting old C99 program to C11 using MinGW -
i'm trying convert old program written in c99 c11 compiled mingw. came across line of code here
contenu[/size] = buffer; and code
output[k] = ((s[(s[i][/i] + s[j])%size]) ^ texte[k]); i'm not used c99. says [/size] , [/i] old c99 syntax or writing code wrong?
also i'm using -std=c99 toggle mingw.
each of expressions contenu[/size] , s[i][/i] neither c99 nor c11. problem not converting c99 c11, quite easy (there few differences between revisions , hidden) converting c-like language c.
Comments
Post a Comment