What will be the output of the following program in C? T#include 2 #include 3 int main() { struct s{ float salary; char name [25]; int age; 8 }; struct s b; 9 b.age=25; 10 strcpy(b.name, "Arun"); 11 12 printf("\n%s%d%", b.name, b.age); 13 return 0;
Answers
Answered by
0
Answer:
I don't know the answer, I am so sorry
Similar questions