main()
{
intj;
while9j<=10)
{
printf("\n%d",j);
j=j+1;
}
}
Answer Posted / sathsh
unexpected
| Is This Answer Correct ? | 3 Yes | 3 No |
Post New Answer View All Answers
What is getche() function?
how to write optimum code to divide a 50 digit number with a 25 digit number??
Why does not c have an exponentiation operator?
what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above
I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...
How do we open a binary file in Read/Write mode in C?
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]
The __________ attribute is used to announce variables based on definitions of columns in a table?
What does sizeof return c?
What is gets() function?
Can we increase size of array in c?
What is the scope of an external variable in c?
How to draw the flowchart for structure programs?
What does a pointer variable always consist of?
Can you write a programmer for FACTORIAL using recursion?