write a program in c language to print your bio-data on the
screen by using functions.
No Answer is Posted For this Question
Be the First to Post Answer
write a program in c language for the multiplication of two matrices using pointers?
how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software
how to find the size of the data type like int,float without using the sizeof operator?
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
Why c is called free form language?
what is the difference between const volatile int i & volatile const int j;
What is the purpose of the statement: strcat (S2, S1)?
What is a nested formula?
Difference between goto, long jmp() and setjmp()?
What are compound statements?
What is volatile c?
#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.