Try the following:
(eval-after-load "shell" '(define-key shell-mode-map (kbd "Cc") 'comint-interrupt-subjob))
In general, when you define keys, you should define them in specific key combinations, and not just hope that local-set-key does what you want.
Note. I prefer to use kbd to describe the keys, your "\Cc" will work fine.
source share