#include<stdio.h>
typedef struct t{
int s[20];
int l;
};
struct t t1={{20,50,70,80,90},5};
void input(struct t t2){
int i;
for(i=0;i<5;i++){
printf("%5d",t2.s[i]);
}
printf("\n");
printf("%5d",t2.l);
printf("\n");
}
void main(){
input(t1);
}
#include<stdio.h>
typedef struct {
int s[20];
int l;
}t;
t t1;
void input( t t2){
int i;
for(i=0;i<5;i++){
printf("%5d",t2.s[i]);
}
printf("\n");
printf("%5d",t2.l);
printf("\n");
}
void main(){
//input(t1);
}
#include<stdio.h>
struct t{
int s[20];
int l;
}t1={{20,50,70,80,90},5};
void input(struct t t2){
int i;
for(i=0;i<5;i++){
printf("%5d",t2.s[i]);
}
printf("\n");
printf("%5d",t2.l);
printf("\n");
}
void main(){
input(t1);
}