Advertisements
Advertisements
प्रश्न
State True or False with reason.
scanf() function is used to input string having multiple words.
उत्तर
scanf() function is used to input string having multiple words. True
APPEARS IN
संबंधित प्रश्न
State True or False with reason.
There is no difference between ‘\0’ and ‘0’.
Write a program to calculate number of vowels (a, e, i, o, u) separately in the entered string.
Write user defined function to implement string concatenation.
Implement string copy function STRCOPY (str1,str2) that copies a string str1 (source) to another string str2 (destination) without using library function.
Explain any 4 functions from string.h header file with suitable examples.
Consider the following string mySubject:
mySubject = "Computer Science"
What will be the output of the following string operation:
print(mySubject[0: len(mySubject)])
Consider the following string mySubject:
mySubject = "Computer Science"
What will be the output of the following string operation:
print(mySubject[-7: -1])
Consider the following string mySubject:
mySubject = "Computer Science"
What will be the output of the following string operation:
print(mySubject[::2])
Input a string having some digits. Write a function to return the sum of digits present in this string.