0% found this document useful (0 votes)
23 views

Q 8

Uploaded by

Sumedh Kakde
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as RTF, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
23 views

Q 8

Uploaded by

Sumedh Kakde
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as RTF, PDF, TXT or read online on Scribd
You are on page 1/ 1

#include <stdio.

h>

struct {
int num ;
char mess1[ 50 ] ; char mess2[ 50 ] ;
} m1 = { 2, "If you are driven by success", "make sure that it is a
quality drive" };
int main( )
{
struct m2, m3 ;
m2 = m1 ;
m3 = m2 ;
printf ( "%d %s %s\n", m1.num, m2.mess1, m3.mess2 ) ;
return 0 ;
}

You might also like