w3ajay

tally tutorial point, ms word 2013, ms excel 2013, ms powerpoint 2010,ccc question with answer in hindi 2021, Tally Prime in hindi , tally prime,Python,in python,programming in python,python

Monday, December 30, 2019

C Program to Copy String



This C program is used to copy the string by using the library function strcpy().







#include <stdio.h>
#include<conio.h>
#include <string.h>
void main()
{
  char source[1000], destination[1000];
  clrscr();
  printf("Input a string\n");
  scanf
("%s",&source);
  strcpy(destination, source);
  printf("Source string: %s\n", source);
  printf("Destination string: %s\n", destination);
  getch();
}
दोस्तों अगर आपको मेरी यह पोस्ट अच्छी लगी हो तो 
      प्लीज  like , share ,कमेंटसब्सक्राइब   जरुर करे जिससे हम आपके 
            लिए ऐसे ही अच्छे से अच्छे पोस्ट लाते  रहे 
अगर आपके पास कोई प्रश्न हो तो कमेंट बॉक्स में उस प्रश्न जरुर लिखे 

              धन्यवाद !


No comments:

Post a Comment

for more information please share like comment and subscribe