Hi, Anybody could tell me What is the script for Reverse of
Given number. Ex:236--632. Thanks in Advance..
Answer Posted / rohit_allinterview
int reverse(int num)
{
int temp,num2=0;
printf("Original number is %d",num);
while(num!=0)
{
temp=num%10;
num=num/10;
num2=num2+temp;
num2=num2*10;
}
num=num2/10;
printf("Reversed Number is %d",num);
}
// Incase of any mistake or doubt plz drop mailto
rohit_vit2020@yahoo.co.in
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain about .wsf files?
Explain about the asc function?
Explain the functionality of vbscript?
How will you check that a variable is an array in vbscript?
i need to sort the data using qtp script for this how i need to write a qtp script
Explain the string concatenation function in vbscript?
filter the array values without using filter function?
For a webbased application:- what should be code in expert veiw, for retrieving a single column name "username" from a server and checking whether exported "username" from datatable doesn't exist in server. suppose i have saved in excelsheet a username="gayatri" , which is exported, then checked for whether this username "gayatri" exist in server database or not ? if exist then allow to enter new username, which should be again checked for in loop , or else come out of loop and enter a distinct "username". plz let me have this answer in my id gayatrisahooin@hotmail.com
What is the use of the formatdatetime function in the vbscript language?
Set srchobj=Description.Create() srchobj("type").value="text" srchobj("name").value="q" srchobj("html tag").value="input" browser("micclass:=google").Page("micclass:=google").webedit (srchobj).Set "qtp" what's wrong in my code pls tell me ? the above code working fine and i got my result pass,now i am trying to run the program it shows general run time error why?pls help me i am in learning stage ?
What are the different types of operators and their order of precedence?
How can you destroy an object in vbscript?
How should i Create Email invite with server-side Coding?
What is the difference between VBScript and JavaScript?
How will you get the exponent of the given number in vbscript?