What does s c mean in text?
No Answer is Posted For this Question
Be the First to Post Answer
what is the function of .h in #include<stdio.h> in c ?
23 Answers HCL, IBM, Wipro,
What are the different flags in C? And how they are useful? And give example for each in different consequences?
How pointer is different from array?
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]
How to throw some light on the b tree?
What is the scope of global variable in c?
difference between c and c++?
What is modifier & how many types of modifiers available in c?
I have an array of 100 elements. Each element contains some text. i want to: append a star character to the end of every fifth element remove every second character from every tenth element, and… add a line feed (ascii 10) after the 30th character of every array element whose length is greater than 30 characters.
main() { int i = 1; int num[] = {1,2,3,4}; num[i] = i++; printf("%d", num[i]); } what will be the output? }
22 Answers NDS, TCS,
int a=2,b=3,c=4; printf("a=%d,b=%d\n",a,b,c); what is the o/p?
How can I direct output to the printer?