The switch variable in C can be of :
AChar type only
BFlot type only
CInt type only
DBoth int as well as char type
AChar type only
BFlot type only
CInt type only
DBoth int as well as char type
Related Questions:
താഴെ പറയുന്ന പ്രസ്താവനകളിൽ ജാവയുമായി ബന്ധപ്പെട്ട് ശരിയായത് ഏതാണ് ?
What is the value of sum after the execution of the following code?
int sum = 0;
for (int i = -5; i<=;i++)
{
if (!i) break;
sum += i;
}