#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.
Answer Posted / rohit
84
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
What are the application of void data type in c?
Differentiate abs() function from fabs() function.
What are keywords c?
What are the loops in c?
What are the data types present in c?
Explain Function Pointer?
What does *p++ do?
Is a house a shell structure?
What is function in c with example?
List the different types of c tokens?
Why is c used in embedded systems?
Is c is a low level language?
What is a function in c?
Is c still relevant?
Explain what are its uses in c programming?