1 C Programming Function Program to print a line of text by using the function C Programming Home » C Functions » A Simple Function /*Program to print a line of text by using the function*/ #include #include ... Read More Share Twitter Facebook Google+
0 C Programming String String Handling Functions strrev strrev() - String Handling Functions C Programming /*Write a program to print the reverse String*/ #include #include #include void main() { char name[20]; printf("Enter the N... Read More Share Twitter Facebook Google+
0 C Programming String String Handling Functions strlen strlen() - String Handling Functions C Programming /*Write a program to print the length of String*/ #include #include #include void main() { char name[20]; int len=0; printf(... Read More Share Twitter Facebook Google+
0 C Programming strcpy String String Handling Functions strcpy() - String Handling Functions C Programming /*Write a program to copy one string into another string*/ #include #include #include void main() { char name1[20], name2[10]; ... Read More Share Twitter Facebook Google+
0 C Programming strcmp String String Handling Functions stcmp() - String Handling Functions C Programming /*Write a program to compare two string*/ #include #include #include void main() { char name1[10], name2[10]; int i=0; clrscr(); ... Read More Share Twitter Facebook Google+