Write a Program to find whether the given number or string is palindrome.
No Answer is Posted For this Question
Be the First to Post Answer
Calculate the weighted average of a list of n numbers using the formula xavg = f1x1+f2x2+ ….+ fnxn where the f’s are fractional weighting factors, i.e., 0<=fi<1, and f1+f2+….+fn = 1
What are volatile variables in c?
Write a program to generate random numbers in c?
output for following code??? main() { int x=2,y,z; x*=3+2; printf("1.%d\n",x); x*=y=z=4; printf("2.%d %d %d\n",x,y,z); x=y==z; printf("3.%d\n",x); x==(y=z); printf("%d",x); }
please tell me the logic for this C program : INPUT (string):ABCD OUTPUT :BCDA CDAB DABC
What is the difference between realloc() and free()
What is character set?
Explain what is the use of a semicolon (;) at the end of every program statement?
What math functions are available for integers? For floating point?
How to get string length of given string in c?
Explain pointer. What are function pointers in C?
what is the function of void main()?