DXNNX 0 Newbie Poster

i need generate a program that say if a word is palindrome or not, but the specification of my word say that the max length of the string is 200, but the getstr of io.mac the max is 81, anyone know a alternative to manage a string of 200 characters

here my code

%include "io.mac"

.DATA ;data segment

req    db  "String: ",0 ;text to show

tex times 200 db 0 ;



.CODE

        .STARTUP

        PutStr req;

        GetStr tex

        PutStr tex;

        .EXIT
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.