Strings
- What will be the output of the following C code?
#include <stdio.h>
#include <ctype.h>
int main()
{
char ch = 'I';
printf("%d\n", isspace(ch));
}
-
View Hint View Answer Discuss in Forum
NA
Correct Option: C
Non-zero number
- What will be the output of the following C code?
#include <stdio.h>
#include <ctype.h>
int main()
{
char ch = 'I';
printf("is : %c\n", tolower('W'));
}
-
View Hint View Answer Discuss in Forum
NA
Correct Option: C
is : w
- Which types of input are accepted in toupper(c)?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: C
Both char *and char
- What is the difference in the ASCII value of capital and non-capital of the same letter is?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: B
32