Trying to write a function that contains switch ..... case. get compile error : expected initializer before 'switch'.
Here is my code. Please let me know where I went wrong.
void finalCountDown (int secs)
void finalCountDown(int secs)
switch (secs){
Case 1:
break;
}