There is a number and when the last digit is moved to its
first position the resultant number will be 50% higher than
the original number.Find the number?



There is a number and when the last digit is moved to its first position the resultant number will..

Answer / rob

285714 and 571428 both work.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

How can I write a function that takes a format string and a variable number of arguments?

0 Answers  


#include<stdio.h> int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20

0 Answers  


Hai what is the different types of versions and their differences

0 Answers  


Explain how can type-insensitive macros be created?

0 Answers  


What is unsigned int in c?

0 Answers  






explain what are pointers?

0 Answers  


What is volatile variable how do you declare it?

0 Answers  


1)what is the error in the following stmt where str is a char array and the stmt is supposed to traverse through the whole character string str? for(i=0;str[i];i++) a)There is no error. b)There shud be no ; after the stmt. c)The cond shud be str[i]!='\0' d)The cond shud be str[i]!=NULL e)i shud be initialized to 1

4 Answers  


What are the ways to a null pointer can use in c programming language?

0 Answers  


Code for calculating square root without using library function, of math.h

4 Answers   IBM,


what is the coding of display the factorial of a number using array and function?

1 Answers  


Explain the advantages and disadvantages of macros.

0 Answers   TCS,


Categories