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
how to write a c program to print list of fruits in alpabetical order?
What is default value of global variable in c?
What is the purpose of scanf() and printf() functions?
What is the purpose of sprintf?
Write a client and server program in C language using UDP, where client program interact with the Server as given below: i) The client begins by sending a request to send a string of 8 characters or series of 7 numbers, the server sends back a characters or numbers as per the request of the client. ii) In case of series of 7 numbers: The client sends a multiplication of numbers, to the server. iii) In case of a string of 8 characters: The client sends a reverse order of string to the server.. iv) Server will send an acknowledgment to the client after receiving the correct answer
Is struct oop?
How do shell structures work?
How pointer is different from array?
why we wont use '&' sing in aceesing the string using scanf
What are the restrictions of a modulus operator?
Is it better to use a macro or a function?
Explain how can I read and write comma-delimited text?
What is the difference between malloc() and calloc()?
What would happen to X in this expression: X += 15; (assuming the value of X is 5)
What is atoi and atof in c?