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

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings

2253


Explain what is the benefit of using const for declaring constants?

618


How will you declare an array of three function pointers where each function receives two ints and returns a float?

787


How can I get back to the interactive keyboard if stdin is redirected?

673


How can I delete a file?

632






Why do we use & in c?

595


How variables are declared in c?

576


typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?

1078


How can I find out if there are characters available for reading?

649


a c code by using memory allocation for add ,multiply of sprase matrixes

2306


Write a C program on Centralized OLTP, Decentralized OLTP using locking mechanism, Semaphore using locking mechanism, Shared memory, message queues, channel of communication, sockets and a simple program on Saving bank application program using OLTP in IPC?

2177


What is the best way to store flag values in a program?

583


What is difference between && and & in c?

604


What are the properties of union in c?

592


The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this

2940