What is the use of #define preprocessor in c?
No Answer is Posted For this Question
Be the First to Post Answer
why should i select you?
Why flag is used in c?
what is bitwise operator?
What is the use of structure padding 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.
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
How to receive strings with spaces in scanf()
Write a program to add a given duration with time(24hrs format)
What is bubble sort in c?
the maximum value that an integer constant can have is a) -32767 b) 32767 c) 1.701e+38 d) -1.7014e+38
What is the difference between the expression “++a” and “a++”?
# define x=1+4; main() { int x; printf("%d%d",x/2,x/4); }