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
What is character set?
wat is the difference between a definition and declaration? float y;---it looks like a declaration..but it s a definition.how?someone explain
What is difference between array and structure in c?
Explain how are 16- and 32-bit numbers stored?
What is c language and why we use it?
what is the output of below code int x=8,y; x>>=2; y=x; what is y value. NOTE:EXPLANATION IS COMPALSARY with binary bits
write a program to display the numbers in the following format 4 4 3 3 3 3 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 2 2 2 2 2 3 3 3 4
matrix multiplication fails introspect the causes for its failure and write down the possible reasons for its failurein c language.
Explain the array representation of a binary tree in C.
The number of measuring units from an arbitarary starting point in a record,area,or control block to some other point a) recording pointer b) offset c) branching d) none
List the different types of c tokens?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol