#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
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
What are pragmas and what are they good for?
What is structure data type in c?
What is array of pointers to string?
How do you view the path?
What is an endless loop?
List a few unconditional control statement in c.
write a program to find the frequency of a number
out put of printf(“%d”,printf(ram));
void main() { char far *farther,*farthest; printf("%d..%d",sizeof(farther),sizeof(farthest)); }
who is the father of c
How can variables be characterized?