adplus-dvertising

Welcome to the Strings MCQs Page

Dive deep into the fascinating world of Strings with our comprehensive set of Multiple-Choice Questions (MCQs). This page is dedicated to exploring the fundamental concepts and intricacies of Strings, a crucial aspect of C Programming. In this section, you will encounter a diverse range of MCQs that cover various aspects of Strings, from the basic principles to advanced topics. Each question is thoughtfully crafted to challenge your knowledge and deepen your understanding of this critical subcategory within C Programming.

frame-decoration

Check out the MCQs below to embark on an enriching journey through Strings. Test your knowledge, expand your horizons, and solidify your grasp on this vital area of C Programming.

Note: Each MCQ comes with multiple answer choices. Select the most appropriate option and test your understanding of Strings. You can click on an option to test your knowledge before viewing the solution for a MCQ. Happy learning!

Strings MCQs | Page 14 of 14

Q131.
What is the output of C program with array of pointers to strings?
int main()
{
    char *code[]={"IN","USA","K"};
    printf("%s", code[1]);
    return 0;
}
Discuss
Answer: (c).USA
Q132.
What is the output of C program with String arrays?
int main()
{
    char code[3][4]={"IN","USA","K"};
    printf("%s", code[1]);
    return 0;
}
Discuss
Answer: (b).USA
Q133.
What is the output of C program with array of pointers to strings?
int main()
{
    char *code[2];
    code[0]= (char *)malloc(4);
    strcpy(code[0], "IND");
    printf("%s", code[0]);
    return 0;
}
Discuss
Answer: (c).IND
Q134.
What is actually passed to PRINTF or SCANF functions?
Discuss
Answer: (b).Address of String
Q135.
What is the output of C program with strings?
int main()
{
    char *code="JUMPER";
    if(code[6]=='\o')
    {
        printf("SUMMER");
    }
    else
    {
        printf("WINTER");
    }
    return 0;
}
Discuss
Answer: (b).WINTER
Page 14 of 14

Suggested Topics

Are you eager to expand your knowledge beyond C Programming? We've curated a selection of related categories that you might find intriguing.

Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!