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
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples
What is the explanation for cyclic nature of data types in c?
Write a program to swap two numbers without using third variable?
program to print circle structure
Differentiate abs() function from fabs() function.
Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record
Explain the difference between malloc() and calloc() in c?
main() {int i=5; // line 1 i=(++i)/(i++); // line 2 printf("%d",i); // line 3 } output is 2 but if we replace line 2 and line 3 by printf("%d",i=(++i)/(i++)); then output is 1. Why?
What is Bitwise Operator and how it works?
Write any data structure program (stack implementation)
Write a code on reverse string and its complexity.
What is output of the following program ? main() { i = 1; printf("%d %d %d\n",i,i++,i++); }