Explain the properties of union.
No Answer is Posted For this Question
Be the First to Post Answer
What is the output for the below program? void main() { float me=1.1; double you=1.1; if(me==you) printf("love c"); else printf("know c"); }
What is extern variable in c with example?
State two uses of pointers in C?
How is a null pointer different from a dangling pointer?
int i=~0; uint j=(uint)i; j++; printf(“%d”,j);
What are local static variables?
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.
10. Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning
What is the use of extern in c?
How do I read the arrow keys? What about function keys?
How can you convert integers to binary or hexadecimal?
Explain what is meant by high-order and low-order bytes?