R
Q. What is the output of C program?
int main() { struct book { int pages; char name[10]; }a; a.pages=10; strcpy(a.name,"Cbasics"); printf("%s=%d", a.name,a.pages); 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. Which of the following is correct mathematical operations in C Programming?
Q. What is a Single Operand Operator below?
Q. How to declare a double-pointer in C?
Q. What will be the output of following c program?
Q. Which of the following cannot be used as LHS of the expression in for (exp1 ;exp2 ; exp3) ?
Q. Which command is to compile C code without linking using gcc compiler?
Q. What is the output of C Program.?
Q. Which is the correct syntax to declare a file pointer in C?
Discusssion
Login to discuss.