I made a simple program in C to check if two words are anagrams. My question is that if I\'m passing word_one and word_two as parameters, doesn\'t that mean that I\'m not modify
C passes only the pointer. Only structs and simple types are passed by the value.