what is the function of .h in #include<stdio.h> in c ?
Answers were Sorted based on User's Feedback
Answer / bhanudas
#include<stdio.h> mean standered input / output header
file.
This preprocessor directive tell the compiler I am
including my program in your header file.
It also called as preprocessor command or header file .
| Is This Answer Correct ? | 1 Yes | 2 No |
How do you initialize pointer variables?
for(;;) printf("C language") What is out put of above??
2 Answers Practical Viva Questions,
What is structure pointer in c?
what is compiler
What is scanf_s in c?
What are the types of data structures in c?
can u write a program in C, which does not use = (eqaul)or any arithmatic assignment(like -=,+=,*= etc) operator to swap to number?
write a program in c to print **** * * * * ****
FIND THE OUTPUT IF THE INPUT IS 5 5.75 void main() { int i=1; float f=2.25; scanf("%d%f",&i,&f); printf("%d %f",,i,f); } ANSWER IS 5 AND 2.25 WHY?
Design a program using an array that searches a number if it is found on the list of the given input numbers and locate its exact location in the list.
What are identifiers c?
What is the difference between call by value and call by reference in c?