C Programming Language - Quiz

  • ACombining two strings.
  • BExtracting a substring out of a string.
  • CPartitioning the string into two strings.
  • DMerging two strings.
  • Astruct temp{}s;
    main(){}
  • Bstruct temp{};
    struct temp s;
    main(){}
  • Cstruct temp s;
    struct temp{};
    main(){}
  • DNone of the mentioned
  • Aunion-name.member
  • Bunion-pointer->member
  • Cboth union-name.member & union-pointer->member
  • Dnone of the mentioned
  • AA function that calls another function
  • BA function that returns a pointer to another function
  • CA function that calls itself
  • DA function that takes no arguments