C

Business, Finance, Economics, Accounting, Operations Management, Computer Science, Electrical Engineering, Mechanical Engineering, Civil Engineering, Chemical Engineering, Algebra, Precalculus, Statistics and Probabilty, Advanced Math, Physics, Chemistry, Biology, Nursing, Psychology, Certifications, Tests, Prep, and more.
Post Reply
answerhappygod
Site Admin
Posts: 899603
Joined: Mon Aug 02, 2021 8:13 am

C

Post by answerhappygod »

C
C 1
C 1 (53.49 KiB) Viewed 10 times
Fill in the blanks based on the provided instructions/requirements in the comments. Encode your answer with TIGHT spacing, i.e., there should not be any unnecessary spaces. Moreover, there should NOT be any unnecessary parentheses and operators. typedef char string[ 50 ]; struct a Tag { int a; float b; double C[ 10 ]; string s; }; // 1. indicate the data type returned by function Exam() Exam(struct a Tag *ptr) { // Access the members of the structure variable indirectly via ptr // You are REQUIRED to use the structure pointer operator; see comments numbered 2 to 5. // 2. input the value of member a scanf("%d", |); // 3. assign 3.1416 as the value of member b = 3.1416; // 4. print the value of the last element of array C. printf("%lf\n", ); // 5. copy "Hello" into string s strcpy( return ptr; "Hello");
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!
Post Reply