Posts by Axion Ions • 19 points
2 posts
-
0
votes1
answer61
viewsQ: Scan string in multiple of 3
People how to scan a string every 3 characters? I was doing like this for(x=0;str_P[x];x++){ if (str_P[x] == 'ABC'||'abc'){ printf("1,"); }if(str_P[x] == 'CBA'||'cba'){ printf("2,"); }if(str_P[x] ==…
casked Axion Ions 19 -
-1
votes1
answer147
viewsQ: Scale console to more than 800x800 visual-c++
Why can’t I resize the screen with 1400x900 "widthxheight"? More precisely the width because I saw that the height I can enlarge with more than 800, 900 and with 1000 it already exceeds the windows…