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
How can I find the modification date and time of a file?
What is boolean in c?
what is event driven software and what is procedural driven software?
Can we access the array using a pointer in c language?
Write a code to generate divisors of an integer?
Differentiate fundamental data types and derived data types in C.
Explain what is the use of a semicolon (;) at the end of every program statement?
What is memcpy() function?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
How to throw some light on the b tree?
Are the variables argc and argv are always local to main?
I heard that you have to include stdio.h before calling printf. Why?
Where we use clrscr in c?
What is the best style for code layout in c?
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..