Explain the properties of union. What is the size of a union variable
No Answer is Posted For this Question
Be the First to Post Answer
what would be the output of the following prog? Justify your answer? main() { unsigned char ch; unsigned char i; ch = -255; printf("%d",ch); i = -1; printf("%d",i); }
write the program for maximum of the following numbers? 122,198,290,71,143,325,98
What do mean by network ?
what is Array?
What is typedf?
What's the difference between a linked list and an array?
what are two categories of clint-server application development ?
What is the explanation for modular programming?
How does the assert() function work?
What is data structure in c programming?
how does the C compiler interpret the following two statements p=p+x; q=q+y; a. p=p+x; q=q+y b. p=p+xq=q+y c. p=p+xq; q=q+y d. p=p+x/q=q+y
What is the use of keyword VOLATILE in C?