1. 示例一 先看下如下代码,思考一下,结果是输出a == b还是a != b? 1#include <stdio.h> 2#include <string.h> 3 4struct test_type { 5 char name[10]; 6 int i; 7 long l; 8}; 9 10int main(void) 11{ 12 struct test_type a = { 13 "test", 1, 2 14 }; 15 struct test_type b; 16 17 b.i = a.i; 18 b.l = a.l; 19 strcpy(b.name, a.name); 20 21 if (0 ==...