Explain how do you list a file’s date and time?
No Answer is Posted For this Question
Be the First to Post Answer
what is ram?
Why isn't any of this standardized in c? Any real program has to do some of these things.
What is the maximum length of an identifier?
What is New modifiers?
explain memory layout of a C program
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.
how can i get output like this? 1 2 3 4 5 6
How can I sort a linked list?
What is a header file?
What are control structures? What are the different types?
main() { static char *s[]={"black","white","yellow","voilet"}; char **ptr[]={s+3,s+2,s+1,s}, ***p; p=ptr; **++p; printf("%s",*--*++p+3); }
Why do u use # before include in a C Progam?