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
Can the sizeof operator be used to tell the size of an array passed to a function?
In which language linux is written?
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.
what is the basis for selection of arrays or pointers as data structure in a program
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
What is the correct code to have following output in c using nested for loop?
What does c in a circle mean?
What is indirection in c?
What is meant by recursion?
What are enumerated types?
Why do we use return in c?
Explain what math functions are available for integers? For floating point?
In cryptography, you could often break the algorithm if you know what was the original (plain) text that was encoded into the current ciphertext. This is called the plain text attack. In this simple problem, we illustrate the plain text attack on a simple substitution cipher encryption, where you know each letter has been substituted with a different letter from the alphabet but you don’t know what that letter is. You are given the cipherText as the input string to the function getwordSets(). You know that a plain text "AMMUNITION" occurs somewhere in this cipher text. Now, you have to find out which sets of characters corresponds to the encrypted form of the "AMMUNITION". You can assume that the encryption follows simple substitution only. [Hint: You could use the pattern in the "AMMUNITION" like MM occurring twice together to identify this]
What does c value mean?
Wt are the Buses in C Language