a parameter passed between a calling program and a called program
a) variable
b) constant
c) argument
d) all of the above
No Answer is Posted For this Question
Be the First to Post Answer
What is wrong with this initialization?
in C-programming language without using printf statement can we get output r not ? if yes how and if no also how ?
write a own function to compare two strings with out using stringcomparition function?
What are actual arguments?
What is the value of h?
What do mean by network ?
#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void main( ) { int i, j, temp; i=5; j=10; temp=0; if( i > j) swap( i, j ); printf( "%d %d %d", i, j, temp); }
WHAT IS LOW LEVEL LANGUAGE?
What is integer constants?
What do you understand by normalization of pointers?
give one ip, find out which contry
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]