f(x,y,z)
{
y = y+1;
z = z+x;
}
main()
{
int a,b;
a = 2
b = 2;
f(a+b,a,a);
print a;
}
what is the value of 'a' printed
Answer Posted / e-mail
a=2
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
How can I handle floating-point exceptions gracefully?
What does the && operator do in a program code?
how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12
how can I convert a string to a number?
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 the function toupper() do?
What are the types of pointers in c?
How do I read the arrow keys? What about function keys?
How can I avoid the abort, retry, fail messages?
What is dynamic dispatch in c++?
what will be the output for the following main() { printf("hi" "hello"); }
Explain function?
HOW TO SOLVE A NUMERICAL OF LRU IN OS ??????
Where are the auto variables stored?