kopkop23
July 22nd, 2008, 06:15 AM
Can you provide any assistance? in X86 assembly programming can anyone help me with my program. It will accept strings of characters and then being terminated by ! and ? if strings is terminated by ! program will just display the entered string else if strings is terminated by ? program will reverse the strings else Error no string terminator else NULL input .
heres sample run.
Enter string (max of 80 characters) = Hello World
Output = Error: No string terminator, please try again
Enter string (max of 80 characters) =
Output = Error: null input, please try again
Enter string (max of 80 characters) = Hello World!
Output = Hello World
Do you want to continue (Y/N)? Y
Enter string (max of 80 characters) = Hello World?
Output = dlroW olleH
Do you want to continue (Y/N)? N
below is the program which i am currently have so far.
Hope you could help. Tnx.
heres sample run.
Enter string (max of 80 characters) = Hello World
Output = Error: No string terminator, please try again
Enter string (max of 80 characters) =
Output = Error: null input, please try again
Enter string (max of 80 characters) = Hello World!
Output = Hello World
Do you want to continue (Y/N)? Y
Enter string (max of 80 characters) = Hello World?
Output = dlroW olleH
Do you want to continue (Y/N)? N
below is the program which i am currently have so far.
Hope you could help. Tnx.