the maximum length of a character constant can be
a) 1 character
b) 8 characters
c) 256 chaacters
d) 125 characters
What is a pointer in c?
Can I initialize unions?
What are type modifiers in c?
6. Which of the Following is not defined in string.h? A)strspn() B)strerror() C)memchr() D)strod()
read the folllowing code # define MAX 100 # define MIN 100 .... .... if(x>MAX) x=1; else if(x<MIN) x=-1; x=50; if the initial value of x=200,what is the vlaue after executing this code? a.200 b.1 c.-1 d.50
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 does #pragma once mean?
What are the two types of structure?
Find occurence of a character in a sting.
what is a stack
Find if a number is power of two or not?
Why clrscr is used in c?