write a program to copy a string without using a string?
Answers were Sorted based on User's Feedback
Answer / balaji ganesh
#include<stdio.h>
#include<string.h>
void main()
{
char a[50],b[50];
int i,n=0;
clrscr();
printf("enter a string:");
while((a[n]=getchar())!='\n')
{
b[n]=a[n++];
}
for(i=0;i<n;i++)
printf("%c",b[i]);
getch();
}
Is This Answer Correct ? | 5 Yes | 2 No |
Answer / j j ramesh
void main()
{
char str1[100],str2[100];
printf("ENTER THE STRING :");
gets(str1);
for(i=0;str1[i];i++)
str2[i] = str1[i]l
pritf("COPIED : %s",str2);
}
Is This Answer Correct ? | 4 Yes | 1 No |
How to Throw some light on the splay trees?
how to find out the union of two character arrays?
Is it possible to create recycle bin in mobiles?
Explain the priority queues?
When was c language developed?
How do I copy files?
How will you allocate memory to double a pointer?
How do you sort filenames in a directory?
What are the different types of endless loops?
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); } wat is the o/p and how?
What is the function of this pointer?
0 Answers Agilent, ZS Associates,
What is c basic?