Differentiate between calloc and malloc.
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of header files?
how to find that no is int or float?
How will you write a code for accessing the length of an array without assigning it to another variable?
how would a 4*3 array A[4][3] stored in Row Major Order?
Why is c used in embedded systems?
what is an inline function?
write the program for prime numbers?
73 Answers Accenture, Aptech, Infosys, TCS,
What is difference between union and structure in c?
What are the key features of C?
Differentiate fundamental data types and derived data types in C.
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.
what is the Output? int a=4 b=3; printf("%d%d%d%d%d%d",a++,++a,a++,a++,++a,a++); printf("%d%d%d%d%d%d",b--,b--,--b,b--,--b,--b);