#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 / swastika chatterjee
32
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
Is swift based on c?
What is 'bus error'?
What do mean by network ?
in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures
What functions are in conio h?
code for quick sort?
main() { printf("hello"); fork(); }
Explain what are global variables and explain how do you declare them?
Can we access array using pointer in c language?
What is a function simple definition?
Why #include is used in c language?
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
Explain what does it mean when a pointer is used in an if statement?
What is printf () in c?
What is extern variable in c with example?