Explain the difference between malloc() and calloc() in c?
No Answer is Posted For this Question
Be the First to Post Answer
logic for generating all the combinations of the any number of given letters. ex::::::::: if a,b,c,d are given the o/p should be abcd,dcba,dbac,bcad,................ 4*3*2*1 combinations............
What is NULL pointer?
find second largest element in array w/o using sorting techniques? use onle one for loop.
15 Answers BitWise, Zycus Infotech,
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
How to calculate sum
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
write a c program to find biggest of 3 number without relational operator?
Which weighs more, a gram of feathers or a gram of gold?
What is data structure in c programming?
Combinations of fibanocci prime series
please send me the code for multiplying sparse matrix using c
a=(1,2,3); b=1,2,3; c=1,(2,3); d=(1,2),3; what's the value of 'a','b','c','d'