R
Q. What is the output of C program with structures?
int main() { struct ship { char color[10]; }boat1, boat2; strcpy(boat1.color,"RED"); printf("%s ",boat1.color); boat2 = boat1; strcpy(boat2.color,"YELLOW"); printf("%s",boat1.color); 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. Loops in C Language are implemented using.?
Q. What will be output if you will compile and execute the following c code?
Q. Choose a correct statement about a C Switch Construct.
Q. Which syntax is correct to include a specific preprocessor based on configuration?
Q. What is the correct syntax of enum?
Q. What is the output of the C Program statement?
Q. Where is a file temporarily stored before read or write operation in C language?
Discusssion
Login to discuss.