write a 'c' program to sum the number of integer values
Answer Posted / koushik sarkar
#include<stdio.h>
#include<conio.h>
void main()
{
int a,b;
clrscr();
printf("Enter a integer no:-"); scanf("%d",&a);
printf("Enter a Integer no:-"); scanf("%d",&b);
printf("Sum= %d",a+b);
getch();
}
| Is This Answer Correct ? | 13 Yes | 12 No |
Post New Answer View All Answers
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]
A c program to display count values from 0 to 100 and flash each digit for a secong.reset the counter after it reaches 100.use for loop,. pls guys hepl me.. :(
Where define directive used?
What is #pragma statements?
How will you delete a node in DLL?
What does char * * argv mean in c?
What is the difference between exit() and _exit() function?
How can I write a function that takes a format string and a variable number of arguments?
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
What is a pointer in c plus plus?
How many types of operator or there in c?
Explain void pointer?
What is pointer to pointer in c?
ATM machine and railway reservation class/object diagram
Why void main is used in c?