Strings

Q1:
Which of the following statements are correct about the program below?
#include<stdio.h>

int main()
{
    char str[20], *s;
    printf('Enter a string\n');
    scanf('%s', str);
    s=str;
    while(*s != '\0')
    {
        if(*s >= 97 && *s <= 122)
            *s = *s-32;
        s++;
    }
    printf('%s',str);
    return 0;
}

A The code converts a string in to an integer

B The code converts lower case character to upper case

C The code converts upper case character to lower case

D Error in code

ANS:A - The code converts a string in to an integer

This program converts the given string to upper case string. Output: Enter a string: AptitudeCrack AptitudeCrack



img not found
img

For help Students Orientation
Mcqs Questions

One stop destination for examination, preparation, recruitment, and more. Specially designed online test to solve all your preparation worries. Go wherever you want to and practice whenever you want, using the online test platform.