C Programming
What will be the output of the given program?#includevoid main(){float num=5.6;switch(num){case 5:printf("5");case 6:printf("6");default : printf("0");break;}printf("%d", num);}

0 5.600000
Complier error
6 5.600000
5 5.600000

ANSWER DOWNLOAD EXAMIANS APP

C Programming
What is function?

Function is a block of statements that perform some specific task.
Function is the fundamental modular unit. A function is usually designed to perform a specific task.
All of these
Function is a block of code that performs a specific task. It has a name and it is reusable.

ANSWER DOWNLOAD EXAMIANS APP