c program to print a name without using semicolon
Answer Posted / 080132
#include<stdio.h>
#include<conio.h>
void main{
if(printf("I am arafat from jstu")){
}
if(printf(" ")){
}
if(getch()){
}
}
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Explain what are preprocessor directives?
write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.
What is difference between structure and union?
What is the heap in c?
How do you determine a file’s attributes?
hi... can anyone help me to make a two-dimensinal arrays in finding the sum of two elements plzzz. thnx a lot...
What is const volatile variable in c?
why wipro wase
What is typeof in c?
write a program to generate address labels using structures?
Explain what is a program flowchart and explain how does it help in writing a program?
What is #include conio h?
Which is better pointer or 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]
What is malloc calloc and realloc in c?