Question: #include Estruct Article int Article_number; int Quantity; char Description [60] ; Jarticle = { 20, 100, this is an article! !! }; Evoid print (struct

 #include Estruct Article int Article_number; int Quantity; char Description [60] ;Jarticle = { 20, 100, "this is an article! !!" }; Evoid

#include Estruct Article int Article_number; int Quantity; char Description [60] ; Jarticle = { 20, 100, "this is an article! !!" }; Evoid print (struct Articlex p) printf ("The Article number is: ") ; printf ("%d\ ", p->Article_number) ; printf ("The Quantity is: ") ; printf ("%d\ ", p->Quantity) ; printf ("The Description of the article is: ") ; printf ("%s", p->Description) ; Hint main () print (&article) ; return 0;#define CRT_SECURE NO WARNINGS #include Hint main () FILE* fp = NULL; fp = fopen ("001. txt", "w") ; int a; while ((a = getchar () ) != 1) fprintf (fp, "%c", a) ; fprintf (fp, "CTRL+A is a correct ending \ ") ; fclose (fp) ; fp = NULL ; return 0

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!