List out few of the applications that make use of Multilinked Structures?
What is Memory leakage ?
What is property type c?
Here is a good puzzle: how do you write a program which produces its own source code as output?
What is the use of a static variable 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.
who is the father of C Language?
20 Answers CTS, UST,
Input is "Jack and jill went up a hill" To print output is 1-letter word(s)-1 2-letter words-1 3-letter words-1 4-letter words-4
Explain what is the difference between null and nul?
Sir i need notes for structure,functions,pointers in c language can you help me please
Explain what is the difference between the expression '++a' and 'a++'?
How is pointer initialized in c?
Why is not a pointer null after calling free?