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 do header files do?
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 anagram in c?
What is scope and lifetime of a variable in c?
How can I split up a string into whitespace-separated fields?
When should you not use a type cast?
What are c identifiers?
stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.
What is meant by high-order and low-order bytes?
What is wrong in this statement?
How can I copy just a portion of a string?
How can I make sure that my program is the only one accessing a file?
What is the difference between array and structure in c?
What are called c variables?
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.