how to test pierrot divisor
No Answer is Posted For this Question
Be the First to Post Answer
What is the main difference between STRUCTURE and UNION?
main() { char c; int i = 456; clrscr(); c = i; printf("%d", c); } a. 456 b. -456 c. random number d. none of the above
main() { float me = 1.1; double you = 1.1; if(me==you) printf("I love U"); else printf("I hate U"); }
write a c-program to find gcd using recursive functions
Cau u say the output....?
Who could write how to find a prime number in dynamic array?
main() { int a=10,*j; void *k; j=k=&a; j++; k++; printf("\n %u %u ",j,k); }
pls anyone can help me to write a code to print the values in words for any value.Example:1034 to print as "one thousand and thirty four only"
#ifdef something int some=0; #endif main() { int thing = 0; printf("%d %d\n", some ,thing); }
Finding a number multiplication of 8 with out using arithmetic operator
how to swap 3 nos without using temporary variable
write a program to find out roots of quadratic equation "x=-b+-(b^2-4ac0^-1/2/2a"