x=y=z=1
z=++x||++y&&++z
Printf("%%%d";xyz)
what is the values of x,y and z?????
Answer Posted / tatukula
x=2
y=1
z=1
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is void main () in c?
Explain what is the difference between functions getch() and getche()?
Explain what is the benefit of using #define to declare a constant?
What is the mean of function?
Explain Basic concepts of C language?
What does a pointer variable always consist of?
in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures
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
What is an example of structure?
Explain the ternary tree?
write a program to create a sparse matrix using dynamic memory allocation.
what are bit fields? What is the use of bit fields in a structure declaration?
How can you avoid including a header more than once?
Explain how do you declare an array that will hold more than 64kb of data?
What is the difference between union and structure in c?