what will be the output:
main(){char ch;int a=10;printf("%d",ch);}
Answers were Sorted based on User's Feedback
Answer / ranjani
it will give a warning " that a is assigned a value that is
never used"......
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / a.dinesh kumar
error will be occur because a is not in use in output
statement
| Is This Answer Correct ? | 2 Yes | 6 No |
int n=1; while(1) { switch(n) { case 1:printf("a"); n++; continue; case 2:printf("b"); n++; continue; default : printf("c"); break; } break; }
Why we use stdio h in c?
How does sizeof know array size?
What is meant by high-order and low-order bytes?
Write programs for String Reversal & Palindrome check
What is volatile variable how do you declare it?
what is calloc and malloc?
1. main() { printf("%d",printf("HelloSoft")); } Output?
Q-1: Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college.
Stimulate calculators to perform addition,subtraction,multiplication and division on two numbers using if/else statement?
Please write me a program to print the first 50 prime numbers (NOT between the range 1 -50)
what will be the output of this program main() { int i=1; while (i<=10); { i++; } }