please explain clearly about execution of c program in
detail,in which stage are the printf sacnf getting into
exeecutable code
No Answer is Posted For this Question
Be the First to Post Answer
Explain the advantages of using macro in c language?
Why cd or dvd are round why not square.
what is the similarities between. system call and library function?
What is a far pointer?What is the utility?
What is the most efficient way to count the number of bits which are set in a value?
How would you sort a linked list?
How can I recover the file name given an open stream?
c program to subtract between two numbers without using '-' sign and subtract function.
What is meant by global static? why we have to use static variable instead of Global variable
What is the difference between the expression “++a” and “a++”?
Explain #pragma in 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.