Structure in C Language - Quiz

  • As1 = &s2;
  • Bs1 = s2;
  • C(*s1).number = 10;
  • DNone of the mentioned
  • Astruct temp{}s;
    main(){}
  • Bstruct temp{};
    struct temp s;
    main(){}
  • Cstruct temp s;
    struct temp{};
    main(){}
  • DNone of the mentioned