#include<stdio.h>
int main()
{
int i=2;
int j=++i + ++i + i++;
printf("%d\n",i);
printf("%d\n",j);
}
Answer Posted / mayank kumar
i=5
j=11
| Is This Answer Correct ? | 22 Yes | 10 No |
Post New Answer View All Answers
Calculate 1*2*3*____*n using recursive function??
disply the following menu 1.Disply 2.Copy 3.Append; as per the menu do the file operations 4.Exit
What is wrong with this declaration?
What are high level languages like C and FORTRAN also known as?
a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list
What are the primitive data types in c?
Explain how many levels deep can include files be nested?
What is bin sh c?
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]
Hi can anyone tell what is a start up code?
Which header file is essential for using strcmp function?
How can a program be made to print the name of a source file where an error occurs?
What are c header files?
What is the use of define in c?
What is #line in c?