main()
{
int i=400,j=300;
printf("%d..%d");
}
Answer Posted / muthu
It prints only garbage value, since the variables x and y
were not metioned out side the bracket
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
What is the code for 3 questions and answer check in VisualBasic.Net?
Do array subscripts always start with zero?
Why header file is used in c?
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
What is the benefit of using an enum rather than a #define constant?
What is the difference between exit() and _exit() function in c?
What are examples of structures?
Sir i need notes for structure,functions,pointers in c language can you help me please
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
Explain what is the difference between the expression '++a' and 'a++'?
Explain how do you use a pointer to a function?
Why void is used in c?
What are local static variables?