Difference between strcpy() and memcpy() function?
No Answer is Posted For this Question
Be the First to Post Answer
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.
Write a program to reverse a given number in c?
What do you mean by a sequential access file?
write a program in c to find out the sum of digits of a number.but here is a condition that compiler sums the value from left to right....not right to left..
How will you delete a node in DLL?
Write a C program to check a number even or odd, without using any relational, arithmetic operator and any loops.
void main() { for(; 0 ;) ... { printf("hello"); ... } getch(); }
What is the difference between memcpy and memmove?
a value that does not change during program execution a) variabe b) argument c) parameter d) none
what is use of malloc and calloc?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);