List the difference between a While & Do While loops?
No Answer is Posted For this Question
Be the First to Post Answer
Tell me when would you use a pointer to a function?
What is the main difference between calloc () and malloc ()?
main() { enum{red,green,blue=6,white}; pf("%d%d%d%d", red,green,blue,white); return 0; } a)0 1 6 2 b)0 1 6 7 c)Compilation error d)None of the above
Do you know the difference between malloc() and calloc() function?
Explain how can you determine the size of an allocated portion of memory?
Write a c program to build a heap method using Pointer to function and pointer to structure ?
What is the difference b/w Structure & Array?
how to convert binary to decimal and decimal to binary in C lanaguage
7 Answers BPO, Far East Promotions, IBM, RBS,
What is meant by type specifiers?
write a program to find a given no. is divisible by 3 or not without using any arthimetic operators?
What is malloc and calloc?
how do u find out the number of 1's in the binary representation of a decimal number without converting it into binary(i mean without dividing by 2 and finding out the remainder)? three lines of c code s there it seems...can anyone help