Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~188 People Reached
Favorite Forums
Favorite Tags
Member Avatar for iamstrange14

I have three strings: [CODE=C]char str1[] = "My name is John"; char str2 = "My name is John also"; char final [10];[/CODE] How would i go about comparing the first two strings, and put what is different (" also") into the third one?

Member Avatar for carobee
0
76
Member Avatar for iamstrange14

I'm trying to take a string of numbers and convert it to an actual number. I can successfully convert it if it's just one digit, but I'm unsure how to convert a number with two or more digits. [CODE=nasm] section .data str: db '3' ;string to be converted section .text …

Member Avatar for Salem
0
112