wat is output of the following
int main()
{
const int j=2;
int i;
switch(i)
{
case 1:break;
case j:break;
default:break;
}
}
Answer Posted / kalyan chukka
Error Generated Because Case j is invalid declaration so
error generated
| Is This Answer Correct ? | 15 Yes | 1 No |
Post New Answer View All Answers
What is a constant and types of constants in c?
What is pointer & why it is used?
List some of the dynamic data structures in C?
What is an example of structure?
Are there namespaces in c?
How can I write a function that takes a format string and a variable number of arguments?
What does #pragma once mean?
What is abstract data structure in c?
Why do we use int main instead of void main in c?
Can you write the algorithm for Queue?
Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.
Write a progarm to find the length of string using switch case?
What is array in C
Do you know what are the properties of union in c?
Explain Basic concepts of C language?