Which function in C can be used to append a string to another string?
No Answer is Posted For this Question
Be the First to Post Answer
void main() { int a[]={1,2,3,4,5},i; for(i=0;i<5;i++) printf("%d",a++); getch(); }
What are integer variable, floating-point variable and character variable?
What are external variables in c?
write a program to find out prime number using sieve case?
main() { int i; printf("%d",scanf"%d",&i))//if the input is 12 24 34 then wat will be the output }
Write a code to reverse string seperated by spaces i/p str=India is my country o/p str=aidnI si ym yrtnuoc After writing code, optimize the code
how does the C compiler interpret the following two statements p=p+x; q=q+y; a. p=p+x; q=q+y b. p=p+xq=q+y c. p=p+xq; q=q+y d. p=p+x/q=q+y
What is volatile, register definition in C
a 'c' program to tell that the set of three coordinates lie on a same line
sqrt(x+sqrt(x+sqrt(x+sqrt(x))))=2; Find the value of x?
What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file
Why doesn't the code "int a = 1000, b = 1000; long int c = a * b;" work?