Answer Posted / manikanta
#include "stdio.h"
main()
{
printf(" %%d ");
}
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
Explain the advantages of using macro in c language?
Explain what is wrong with this program statement?
What is the difference between struct and union in C?
What are the advantages and disadvantages of pointers?
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 the use of void pointer and null pointer in c language?
why programs in c are running with out #include
Why c is called a mid level programming language?
Place the #include statement must be written in the program?
How main function is called in c?
Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college. 1.write a function to print names of all students who joined in a particular year 2.write a function to print the data of a student whose roll number is given
What is the general form of function in c?
What is formal argument?
What is the size of a union variable?
Is there a way to jump out of a function or functions?