What is the difference between strcpy() and memcpy() function in c programming?
what's the o/p int main(int n, char *argv[]) { char *s= *++argv; puts(s); exit(0); }
WHAT IS THE DEFINATION OF IN TECHNOLOGY AND OFF TECHNOLOGY ?
What is c language in simple words?
Explain how can I remove the trailing spaces from a string?
What are c preprocessors?
what is diff b/w huge & far & near pointer??
#include<std.h> int main() { char *str[]={"Frogs","Do","Not","Die","They","Croak!"}; printf("%d %d\n",sizeof(str),strlen(str)); ...return 0; } what will the output of the above program?
What is data types?
what is the purpose of the code, and is there any problem with the code? int f( int n, int l, int r ) { return (n << l) >> r; }
Concat two string with most overlapped substring has to remove "abcd"+ "cdef" = "abcdef
What is multidimensional arrays
write a programming in c to find the sum of all elements in an array through function.