how to write optimum code to divide a 50 digit number with a
25 digit number??
No Answer is Posted For this Question
Be the First to Post Answer
What are the different types of errors?
What is the output of printf("%d", printf("Hello"));?
What is the use of c language in real life?
Find the output? void main() {float a=2.0; printf("\nSize of a ::%d",sizeof(a)); printf("\nSize of 2.0 ::%d",sizeof(2.0));}
11 Answers IBM, TCS,
What is the output of following program ? int main() { int x = 5; printf("%d %d %d\n", x, x << 2, x >> 2); }
What happens if you free a pointer twice?
Explain goto?
What are the different types of control structures?
Define and explain about ! Operator?
Where in memory are my variables stored?
What is 'makefile' in C langauage? How it be useful? How to write a makefile to a particular program?
Why main function is special give two reasons?