Why does the call char scanf work?
No Answer is Posted For this Question
Be the First to Post Answer
What are examples of structures?
Juxtapose the use of override with new. What is shadowing?
a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list
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.
What are structure members?
Write a program to check whether a number is prime or not using c?
What is the use of typedef in structure in c?
how to execute a program using if else condition and the output should enter number and the number is odd only...
difference between loading and linking
What is static identifier?
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
Write a program to print this triangle: * ** * **** * ****** * ******** * ********** Don't use printf statements;use two nested loops instead. you will have to use braces around the body of the outer loop if it contains multiple statements.