In C programming, how do you insert quote characters (‘ and “) into the output screen?
No Answer is Posted For this Question
Be the First to Post Answer
using only #include <stdio.h> and #include <stdlib.h> Write a program in C that will read an input from the user and print it back to the user if it is a palindrome. The string ends when it encounters a whitespace. The input string is at most 30 characters. Assume the string has no spaces and distinguish between and lowercase. So madam is a palindrome, but MadAm is not a palindrome. Use scanf and %s to read the string. Sample Test: Enter a string: madam madam is a palindrome. Enter a string: 09023 09023 is not a palindrome.
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
write a program to find out number of on bits in a number?
WAP to accept first name,middle name & last name of a student display its initials?
WAP that prints the number from 1 to 100. but for multiplies of three print "XXX" instead of the number and for the multiplies of five print "YYY" . for number which are multiplies of both three and five print "ZZZ"
main() { int age; float ht; printf("Enter height and age"); scanf("%d%d",&height,&age); if((age<=20)&&(ht>=5)) {printf("She loves you");} else {printf("She loves you");} }
How many types of operator or there in c?
Can a local variable be volatile in c?
How can I ensure that integer arithmetic doesnt overflow?
What is use of pointer?
What are the types of pointers?