Heim > Fragen und Antworten > Hauptteil
#include <stdio.h>
struct n
{
int x;
char c;
};
void func(struct n b){
b.x=20,b.c='y ' ;
}
void main(){
struct n a={10,'x'};
func(a);
printf("%d,%c",a.x,a.c);
}
Warum ist das Endergebnis 10,x, bitte geben Sie mir eine Antwort