Can static variables be declared in a header file?
No Answer is Posted For this Question
Be the First to Post Answer
how to find your architecture is LittleEndian or BigEndian?
Which is the memory area not included in C program? give the reason
how to add two numbers without using arithmetic operators?
Is c is a high level language?
What does typedef struct mean?
What does emoji p mean?
What is function prototype?
how many keywords do C compile?
7 Answers Microsoft, Practical Viva Questions,
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above
List the difference between a "copy constructor" and a "assignment operator"?
How can we see the Expanded source code and compiled code for our source program in C?
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.