main()
{
char as[] = "\\0\0";
int i = 0;
do{
switch( as[i++]) {case '\\' : printf("A");
break;
case 0 : printf("B");
break;
default : printf("C");
break;
}}
while(i<3);
}
Answer Posted / darpan
AB
| Is This Answer Correct ? | 0 Yes | 5 No |
Post New Answer View All Answers
Explain how does free() know explain how much memory to release?
Explain that why C is procedural?
What is modeling?
What is a method in c?
Who is the main contributor in designing the c language after dennis ritchie?
Explain what does a function declared as pascal do differently?
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above
Is this program statement valid? INT = 10.50;
What is calloc in c?
What is the heap?
Explain what are the standard predefined macros?
What is the importance of c in your views?
Should I learn data structures in c or python?
Are global variables static in c?
Is null always equal to 0(zero)?