What is the relation between # and include<stdio.h>
Answer Posted / anjali
# indicates the directive preprocessor which allows the
program to run.
While include<stdio.h> is the standard library function
that allows you to enter the input and receive the output.
i.e. printf() and scanf().
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is an operator?
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
What does c mean in basketball?
What does %d do in c?
What is hash table in c?
What is the concatenation operator?
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]
What does d mean?
An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above
write a C program: To search a file any word which starts with ?a?. If the word following this ?a? starts with a vowel.Then replace this ?a? with ?a? with ?an?. redirect with the output onto an output file.The source file and destination file are specified by the user int the command line.
A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?
Differentiate between the = symbol and == symbol?
What is linear search?
What is exit() function?
Write a program to print factorial of given number using recursion?