#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.
Answers were Sorted based on User's Feedback
Why we not create function inside function.
Which is the best sort method for library management?
Once I have used freopen, how can I get the original stdout (or stdin) back?
7. Identify the correct argument for the function call fflush() in ANSI C: A)stdout B)stdin C)stderr D)All the above
what is the difference between const volatile int i & volatile const int j;
write the program to find multiplication of 2-D matrix??????????
What is difference between stdio h and conio h?
Is c call by value?
What is Dynamic Initialization.
What is the difference between File pointer and Internal Charecter Pointer?
what is the use of bitfields & where do we use them?
What is hashing in c?