C program to Capitalize the String 9:20 PM 1 Capitalize a String or a sentence means to make the first letter of each word upper case. We try to achieve the same using the C program ...
Sum of Two numbers using recursion function in C 8:05 PM 0 How to add two number using recursion function in C? Solution: #include <stdio.h> int main( int argc, c...
Reverse string in C without using strrev() function 7:53 PM 0 It's a C program that explains how to reverse a given string without using the inbuilt function ' strrev() ' which is a part...
Dangling Pointer 7:43 PM 0 Dangling Pointer Dangling pointer are the pointer which contain address of no " memory blocks ." In other words dangling poin...