What is the use of
in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the significance of c program algorithms?
A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?
Given an unsigned integer, find if the number is power of 2?
what is meant by the "equivalence of pointers and arrays" in C?
How to compare array with pointer in c?
Is array name a pointer?
What is the difference between array and pointer in c?
What is static and volatile in c?
If "AaBbCc" is passed to the char char x(*a) { a[0]?x(a+1):1; printf("%c",a[0]); return 1; } what will be the output?
Why is c so important?
How can I send mail from within a c program?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }