What is strcpy() function?
No Answer is Posted For this Question
Be the First to Post Answer
How can I list all of the predefined identifiers?
logic for x=y^n
how can write all 1to 100 prime numbers using for loop,if and break ?
What are the advantages and disadvantages of pointers?
Why does everyone say not to use scanf? What should I use instead?
What is the method to save data in stack data structure type?
which one low Priority in c? a)=,b)++,c)==,d)+
What is a Deque?
What will be the result of the following program? char*g() { static char x[1024]; return x; } main() { char*g1="First String"; strcpy(g(),g1); g1=g(); strcpy(g1,"Second String"); printf("Answer is:%s", g()); } (A) Answer is: First String (B) Answer is: Second String (C) Run time Error/Core Dump (D) None of these
Write a program which returns the first non repetitive character in the string?
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none
Can we add pointers together?