what will be the output:
main(){char ch;int a=10;printf("%d",ch);}
Answer Posted / siraj
0
| Is This Answer Correct ? | 1 Yes | 8 No |
Post New Answer View All Answers
How can I run c program?
What is the difference between volatile and const volatile?
how do you programme Carrier Sense Multiple Access
Should I learn c before c++?
What is the difference between void main and main in c?
Can 'this' pointer by used in the constructor?
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
How do you generate random numbers in C?
What is time null in c?
What is the maximum length of an identifier?
in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above
Where are some collections of useful code fragments and examples?
Define and explain about ! Operator?
What does calloc stand for?
Badboy is defined who has ALL the following properties: Does not have a girlfriend and is not married. He is not more than 23 years old. The middle name should be "Singh" The last name should have more than 4 characters. The character 'a' should appear in the last name at least two times. The name of one of his brothers should be "Ram" Write a method: boolean isBadBoy(boolean hasGirlFriend , boolean isMarried, int age , String middleName , String lastName , String[] brotherName); isHaveGirlFriend is true if the person has a girlfriend isMarried is true if the person is married age is the age of the person middleName is the middle name of the person lastName is the last name of the person brotherName is the array of the names of his brothers