Programming in language C // function main begins program executionint main( void )char name[50];char street[100];char city[50];char state[20];long postcode;printf("Enter a...


Programming in language C


Rewrite the following code fragment using a structure to replace the set of char arrays and<br>long number, while correcting one error in the scanf statement.<br>#include <stdio.h><br>// function main begins program execution<br>int main( void )<br>char name[50];<br>char street[100];<br>char city[50];<br>char state[20];<br>long postcode;<br>printf(

Extracted text: Rewrite the following code fragment using a structure to replace the set of char arrays and long number, while correcting one error in the scanf statement. #include // function main begins program execution int main( void ) char name[50]; char street[100]; char city[50]; char state[20]; long postcode; printf("Enter a name:"); scanf("%[^\n]%*c", name); printf("Enter a house number:"); scanf("%d",&housenumber); printf("\nEnter a street:"); scanf("%[^\n]%*c", street); printf("\nEnter a city:"); scanf("%[^\n]%*c", city); printf("\nEnter a state:"); scanf("%[^\n]%*c", state); printf("Enter a postcode:"); scanf("%ld", &postcode); printf("The address of %s is at %d,%s,%ld %s,%s\n", name,housenumber,street,postcode,city,state); return 0;

Jun 06, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here