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
What is the condition that is applied with ?: Operator?
How can I check whether a file exists? I want to warn the user if a requested input file is missing.
What are variables c?
What is pointers in c with example?
I need a sort of an approximate strcmp routine?
How are Structure passing and returning implemented by the complier?
List some of the dynamic data structures in C?
What is structure pointer in c?
What is actual argument?
Difference between pass by reference and pass by value?
an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
Are global variables static in c?
how to create duplicate link list using C???
What are the advantages of the functions?