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 |
Can u return two values using return keyword? If yes, how? If no, why?
what is the diff b/w static and non static variables in C. Give some examples plz.
How can I read a directory in a C program?
2 Answers Bright Outdoor, Wipro,
Q.1 write a program to create binary tree 1 to 16 numbers? Q.2 write a program to creat a binary search tree for the member that is given by user?
What is the correct code to have following output in c using nested for loop?
Explain what are multidimensional arrays?
yogesh patil in dell
A banker has a seif with a cipher. Not to forget the cipher, he wants to write it coded as following: each digit to be replaced with the difference of 9 with the current digit. The banker chose a cipher. Decipher it knowing the cipher starts with a digit different than 9. I need to write a program that takes the cipher from the keyboard and prints the new cipher. I thought of the following: Take the input from the keyboard and put it into a string or an array. Go through the object with a for and for each digit other than the first, substract it from 9 and add it to another variable. Print the new variable. Theoretically I thought of it but I don't know much C. Could you give me any kind of hint, whether I am on the right track or not?
EXPLAIN #INCLUDE<STDIO.H> EXPLAIN #INCLUDE<CONIO.H>
What is the benefit of using an enum rather than a #define constant?
Write a program in C to reverse a number by recursive function?
Explain what is the most efficient way to store flag values?