MCQOPTIONS
Bookmark
Saved Bookmarks
→
C Programming
→
Floating Point Issues in C Programming
→
Are the properties of and in the following progr..
1.
Are the properties of and in the following program same?
A.
Yes
B.
No
Answer» B. No
Show Answer
Discussion
No Comment Found
Post Comment
Related MCQs
In the following code snippet can we declare a new named even though has not been completely declared while using ?
Point out the error in the following code?
Is the following declaration acceptable?
Is there any difference in the and in the following code?
Are the properties of and in the following program same?
's have the advantage that they obey scope rules, that is they can be declared local to a function or a block whereas 's always have a global effect.
In the following code, the is Integer Pointer or Integer?
In the following code what is 'P'?
What is x in the following program?
What will be the output of the following C code?<br><pre class="prettyprint lang-c">#include <stdio.h><br> typedef struct MM<br> {<br> int n1, n2;<br> }mm;<br> int main()<br> {<br> struct MM m = {22, 44};<br> mm k = m;<br> printf("%d n", k.n1);<br> }<br></pre>
Reply to Comment
×
Name
*
Email
*
Comment
*
Submit Reply