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

When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd

635


What is meant by errors and debugging?

639


Write a program to swap two numbers without using the third variable?

587


What is difference between constant pointer and constant variable?

615


How to write a multi-statement macro?

613






Are enumerations really portable?

586


List some basic data types in c?

550


What is the difference between exit() and _exit() function?

593


What is the meaning of typedef struct in c?

579


Explain the process of converting a Tree into a Binary Tree.

2092


Why is C language being considered a middle level language?

642


I have a varargs function which accepts a float parameter?

565


Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.

821


What is const and volatile in c?

558


4. main() { int c=- -2; printf("c=%d",c); }

1361