Difference between strcpy() and memcpy() function?
No Answer is Posted For this Question
Be the First to Post Answer
Tell me what are bitwise shift operators?
how to swap two nubers by using a function with pointers?
to write a program, that finds the minimum total number of shelves, including the initial one, required for this loading process. The packets are named A, B, C, D, E …….. Any numbers of packets with these names could be kept in the shelf, as in this example: [ZZLLAAJKRDFDDUUGGYFYYKK]. All packets are to be loaded on cars. The cars are lined in order, so that the packets could be loaded on them. The cars are also named [A, B, C, D, E,………….].
How can you find the exact size of a data type in c?
What are the disadvantages of external storage class?
Can we increase size of array in c?
int j =15,i; for (i=1; 1<5; ++i) {printf ("%d%d ",j,i); j = j-3; }
What are the types of c language?
WAP to find that given no is small or capital
What is a static function in c?
what is the hexidecimal number of 4100?
1. Write the function int countchtr(char string[ ], int ch); which returns the number of times the character ch appears in the string. Example, the call countchtr(“She lives in NEWYORK”, ‘e’) would return 3.