x=2,y=6,z=6
x=y==z;
printf(%d",x)
Answer Posted / manjunath kusagur
in memory first location hold value of x as 2....ofter
assigning x=y..x(6)<-y..value of x is overwritten because
memory location holds only one value at a time means now x
holds value as 6......
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
How to draw the flowchart for structure programs?
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
write a program in c language to print your bio-data on the screen by using functions.
What's the right way to use errno?
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
Explain what are run-time errors?
what are the advantages of a macro over a function?
Difference between constant pointer and pointer to a constant.
What are pointers in C? Give an example where to illustrate their significance.
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
How can you tell whether two strings are the same?
What is 'bus error'?
Explain do array subscripts always start with zero?
How do you use a pointer to a function?
What is scope rule in c?