Issue
How do I check if gcc
is installed on my pc? I'm running windows 7.
Solution
Very simple.
Go to Command Prompt and type
gcc -v
if gcc is installed on your PC, it should display a host of information, starting with the sentence
Using built-in specs
and that will indicate that gcc is installed on your computer.
Answered By - Muhammad Yasir