n=7623
{
temp=n/10;
result=temp*10+ result;
n=n/10
}
Answer Posted / shruti
the answer depends upon, to what value result is
initialised..
| Is This Answer Correct ? | 6 Yes | 2 No |
Post New Answer View All Answers
Explain enumerated types in c language?
How would you use the functions fseek(), freed(), fwrite() and ftell()?
what is the format specifier for printing a pointer value?
How can I use a preprocessorif expression to ?
What do you mean by command line argument?
Write a program to print "hello world" without using a semicolon?
Does c have class?
How to write a code for reverse of string without using string functions?
Explain the advantages of using macro in c language?
What is register variable in c language?
What is a program flowchart?
Why main function is special give two reasons?
What does c value mean?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
Write a c program to demonstrate character and string constants?