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
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
main() { struct test { char c; int i; char m; } t1; printf("%d %d\n", sizeof(t1), sizeof(t1.c)); }
1 Answers Vector, Vector India,
how to convert binary to decimal and decimal to binary in C lanaguage
7 Answers BPO, Far East Promotions, IBM, RBS,
What is the difference between union and structure in c?
Where static variables are stored in c?
what will the following program do? void main() { int i; char a[]="String"; char *p="New Sring"; char *Temp; Temp=a; a=malloc(strlen(p) + 1); strcpy(a,p); //Line no:9// p = malloc(strlen(Temp) + 1); strcpy(p,Temp); printf("(%s, %s)",a,p); free(p); free(a); } //Line no 15// a) Swap contents of p & a and print:(New string, string) b) Generate compilation error in line number 8 c) Generate compilation error in line number 5 d) Generate compilation error in line number 7 e) Generate compilation error in line number 1
any string of bits of length 'n' represents a unique non- negative integer between.............?
What is putchar() function?
What is union in c?
c program to subtract between two numbers without using '-' sign and subtract function.
Explain what is a pragma?
write a program to find out number of on bits in a number?