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...
Magic square in C 2:06 PM 1 A magic square is a n × n {\displaystyle n\times n} square grid (where ...
How to Merge Two matrix in C 8:48 AM 0 By merging property in C we are able to merge(mix) two are more matrix in a single matrix one after one in a known sequence, for this we h...