What is the use of the #include directive?
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
The #include directive is used to include header files in a program. For example, #include<stdio.h> includes the standard input-output library.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
The #include directive is used to include header files in a program. For example, #include<stdio.h> includes the standard input-output library.
| Is This Answer Correct ? | 0 Yes | 0 No |
The #include directive is used to include header files in a program. For example, #include<stdio.h> includes the standard input-output library.
| Is This Answer Correct ? | 0 Yes | 0 No |
Write a function that accepts a sentence as a parameter, and returns the same with each of its words reversed. The returned sentence should have 1 blank space between each pair of words. Demonstrate the usage of this function from a main program. Example: Parameter: “jack and jill went up a hill” Return Value: “kcaj dna llij tnew pu a llih”
prog for 1st five prime numbers in 2^x - 1
Why header files are used?
identify the in correct expression a.a=b=3=4; b.a=b=c=d=0; float a=int b=3.5; d.int a; float b; a=b=3.5;
What is meant by high-order and low-order bytes?
What is the use of header?
write a c program to find largest of three numbers using simple if only for one time.
How pointers are declared?
Write a program to add the following ¼+2/4+3/4+5/3+6/3+... (Like up to any 12 no.s)
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2
Is c easy to learn?
What ios diff. Between %e & %f?