> void main()
main returns an int.

> strcpy(frq, "16000000");
1. You don't include string.h
2. frq is declared const, so you can't copy to it.
3. frq isn't large enough anyway, so buffer overflow.