what is the output of the program and explain why??
#include<stdio.h>
void main ( )
{
int k=4,j=0:
switch (k)
{
case 3;
j=300;
case 4:
j=400:
case 5:
j=500;
}
printf (ā%d\nā,j);
}
Answer Posted / gouse mohiddin
500
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
please explain clearly about execution of c program in detail,in which stage are the printf sacnf getting into exeecutable code
how to create duplicate link list using C???
The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this
Why is c used in embedded systems?
What is methods in c?
Whats s or c mean?
Differentiate fundamental data types and derived data types in C.
Why main is not a keyword in c?
Is it possible to execute code even after the program exits the main() function?
A banker has a seif with a cipher. Not to forget the cipher, he wants to write it coded as following: each digit to be replaced with the difference of 9 with the current digit. The banker chose a cipher. Decipher it knowing the cipher starts with a digit different than 9. I need to write a program that takes the cipher from the keyboard and prints the new cipher. I thought of the following: Take the input from the keyboard and put it into a string or an array. Go through the object with a for and for each digit other than the first, substract it from 9 and add it to another variable. Print the new variable. Theoretically I thought of it but I don't know much C. Could you give me any kind of hint, whether I am on the right track or not?
What is the behavioral difference when include header file in double quotes (āā) and angular braces (<>)?
Can a variable be both static and volatile in c?
Using which language Test cases are added in .ptu file of RTRT unit testing???
Why is c not oop?
Can you please compare array with pointer?