Answer Posted / revathi pawar
structure is the set of different datatype whereas the
struct is the keyword
union is the one where will not print or give correct ouptut
whereas it will give the address of tat particular string or
no given
union s the keyword
Is This Answer Correct ? | 1 Yes | 7 No |
Post New Answer View All Answers
Explain can the sizeof operator be used to tell the size of an array passed to a function?
Can static variables be declared in a header file?
What is meant by int main ()?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
What is c language and why we use it?
Differentiate between #include<...> and #include '...'
How can I delete a file?
How many types of operator or there in c?
Is register a keyword in c?
What is a sequential access file?
What is the difference between array and linked list in c?
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
What is a #include preprocessor?
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
What is the purpose of macro in C language?