Please put your chromedriver.exe in a folder in your desktop.
Then create a test.py in the same folder containing this minimal example:
from selenium import webdriver
browser = webdriver.Chrome()
browser.get('https://www.google.com')
This code was just tested on my Windows PC, works perfectly.
If you do not specify a path for chromedriver.exe Selenium will search for it in the same folder of your script.
I like this behaviour because if I need to move the script to another pc or send it to someone I just have to zip the folder and send it out.
You can clearly choose a different path for your chromedriver.exe file but you have to be sure that your user (or the user that will be running your script) 100% has permission to read and write for the specified path.
C:\ is generally not a good idea, specially in new Windows versions like 10.
The error you have pasted underlines a permission problem for the path C:\