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 the syallabus of computer science students in group- 1?
What is a pointer value and address in c?
What is array of pointers to string?
What is the use of volatile?
What are the different types of C instructions?
Is file a keyword in c?
What is printf () in c?
What does %c mean in c?
program to convert a integer to string in c language'
write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.
Do array subscripts always start with zero?
How many types of functions are there in c?
What are the types of unary operators?
What are the types of bitwise operator?
What is the difference between Printf(..) and sprint(...) ?