n=7623
{
temp=n/10;
result=temp*10+ result;
n=n/10
}

Answers were Sorted based on User's Feedback



n=7623 { temp=n/10; result=temp*10+ result; n=n/10 } ..

Answer / guest

3267

Is This Answer Correct ?    12 Yes 7 No

n=7623 { temp=n/10; result=temp*10+ result; n=n/10 } ..

Answer / vikesh

n=temp=762
the value of result depends on initial value of result

Is This Answer Correct ?    8 Yes 3 No

n=7623 { temp=n/10; result=temp*10+ result; n=n/10 } ..

Answer / shruti

the answer depends upon, to what value result is
initialised..

Is This Answer Correct ?    6 Yes 2 No

n=7623 { temp=n/10; result=temp*10+ result; n=n/10 } ..

Answer / naresh lingampally

cool!!! ignoring the syntax errors;

n=7623
n/10== 762
result=>762*10+*;


this means that the result itself should be initialized to
'0' so that there would a right output..

So output will be garbage value ...
to my knowledge

Is This Answer Correct ?    2 Yes 0 No

n=7623 { temp=n/10; result=temp*10+ result; n=n/10 } ..

Answer / bobby shankar

it will display something garbage
because value of result is not
initialised .

Is This Answer Correct ?    2 Yes 0 No

n=7623 { temp=n/10; result=temp*10+ result; n=n/10 } ..

Answer / arif shaik

The variables n,tempand result what type data it may be?,It
first Displays an error "Statement missing ; in function
main". If it is rectified then the answer should depends on
data type of that variables and their initialized values.

Is This Answer Correct ?    2 Yes 1 No

n=7623 { temp=n/10; result=temp*10+ result; n=n/10 } ..

Answer / vignesh1988i

assuming that the variables that are used above are integers....


the result will be : depends on the user....

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More C Interview Questions

how to go with this?

1 Answers   Wipro,


What is declaration and definition in c?

0 Answers  


What is Full Form of C and Why We use C

23 Answers  


Is c pass by value or reference?

0 Answers  


Is c++ based on c?

0 Answers  






character array A[12] can hold

5 Answers   Wipro,


Can a pointer be volatile in c?

0 Answers  


main() { float a=8.8; double b=8.8; if(a==b) printf("Equal"); else printf("not equal"); getch(); } what is the output? with reason

6 Answers   CSC,


Explain the difference between getch() and getche() in c?

0 Answers  


Write a program for the following series? 1 121 12321 1234321 123454321 12345654321 1234567654321 123456787654321 12345678987654321 1234567890987654321 123456789010987654321 12345678901210987654321 1234567890123210987654321 .........1234321............ ..........123454321............ ..........12345654321............ 7 8 9 0 1 Pls............?

5 Answers  


What do you mean by c what are the main characteristics of c language?

0 Answers  


main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); } what is the output?

7 Answers   AMCAT, HCL, Ramco, Zycus Infotech,


Categories