Write a C- Program To Determine If The Given String Is A Palindrome Or Not.
#include <stdio.h> #include <conio.h> main() { int i,n,j,len=0; char str[30]; clrscr(); printf("\n Enter String:"); gets(str); for(i=0;str[i]!='\0';i++) len++; printf("\n The length of the string is %d",len); for(i=0,j=len-1;str[i]!='\0';i++,j--) { if(str[i]!=str[j]) { printf("\n :The given string is not a palindrome:"); getch(); exit(0); } } printf("\n :the given string is palindrome:"); getch(); }
Write a C program to find both the largest and smallest number in list of integers.
Write a C program to print the following output.
1
2 2
3 3 3
4 4 4 4
5 5 5 5 5
Explain the LOC, Function point and Feature point?
Write a C program to transpose of a matrix.
What is feasibility study? Explain different types of feasibility study.
Discuss about SCHEDULING
Write a C program to convert any name in short name.