What are structure members?
No Answer is Posted For this Question
Be the First to Post Answer
Is it possible to pass an entire structure to functions?
Why does the call char scanf work?
What will be the output of the following program #include<stdio.h> void main() { int i=20; i-=i+++++i++; printf("%d",i); }
What is the stack in c?
Write a code to generate a series where the next element is the sum of last k terms.
What is static and volatile 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.
Is c still used?
What are the different pointer models in c?
Write a program to exchange two variaables without temp
How can I read in an object file and jump to locations in it?
Does c have class?