R
Q. What is the output of C program with structures?
int main() { structure hotel { int items; char name[10]; }a; strcpy(a.name, "TAJ"); a.items=10; printf("%s", a.name); return 0; }
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. What is the result of logical or relational expression in C?
Q. What is the output of C program with strings?
Q. To represent hierarchical relationship between elements, which data structure is suitable?
Q. What is the range of values that can be stored by int datatype in C?
Q. What is the output of C program with switch statement or block?
Q. Which function is used to close an opened file in C?
Q. Which of the following is correct Associativity for == operator?
Q. Where are the local variable stored ?
Q. What will be the data type of the result of the following operation?
Discusssion
Login to discuss.