Write a C program to store your name and your mother’s name in two different strings.
`#include<stdio.h>#include<string.h> int main(){char Your_name[20],Mother_name[20]; } Example Output:“`Enter your name: Asgar Enter your mother name: Hamida Your name is: Asgar Your […]
Write a C program to store your name and your mother’s name in two different strings. Read More »