How reliable are floating-point comparisons?
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> #include<conio.h> struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.
Differentiate fundamental data types and derived data types in C.
What is context in c?
HOW DO YOU HANDLE EXCEPTIONS IN C?
what is the difference between c and java?
How can I find out if there are characters available for reading?
What is string in c language?
Explain how do you determine whether to use a stream function or a low-level function?
What is pass by value in c?
Does c have circular shift operators?
Write a program to accept a character & display its corrosponding ASCII value & vice versa?
What is the purpose of type declarations?