What is the relation between # and include<stdio.h>
Answer Posted / gita
include<stdio.h> means we include standard input and output
functions code we does not write any thing about library
functions .h means header file if we include tis header
file then we place # before the include<stdio.h> this is c
syntax.
Is This Answer Correct ? | 13 Yes | 1 No |
Post New Answer View All Answers
What is the purpose of scanf() and printf() functions?
What are the types of variables in 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]
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.
What is structure pointer in c?
What is use of null pointer in c?
Write a program to find the biggest number of three numbers in c?
Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.
C program to find all possible outcomes of a dice?
What is output redirection?
What are external variables in c?
Can we access array using pointer in c language?
Explain what is a const pointer?
Are the outer parentheses in return statements really optional?
How does placing some code lines between the comment symbol help in debugging the code?