main()
{
intx=2,y=6,z=6;
x=y=z;
printf(%d",x)
}
Answer Posted / dhananjay
x=6 beacuse x will contain the latest value.
| Is This Answer Correct ? | 21 Yes | 14 No |
Post New Answer View All Answers
What are shell structures used for?
What are keywords c?
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
how many errors in c explain deply
What is huge pointer in c?
Write a program to find factorial of a number using recursive function.
What are the loops in c?
How can I recover the file name given an open stream or file descriptor?
can anyone suggest some site name..where i can get some good data structure puzzles???
How many types of arrays are there in c?
With the help of using classes, write a program to add two numbers.
What are multibyte characters?
stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.
can any one please explain, how can i access hard disk(physical address)? it is possible by the use of far,near or huge pointer? if yes then please explain......
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.