what is the function of .h in #include<stdio.h> in c ?
Answer Posted / joydeep roy
thanks both of u ...4r giving d answer
| Is This Answer Correct ? | 21 Yes | 13 No |
Post New Answer View All Answers
Using which language Test cases are added in .ptu file of RTRT unit testing???
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
What is the difference between printf and scanf in c?
Why is this loop always executing once?
Why structure is used in c?
What is a macro in c preprocessor?
If you know then define #pragma?
What is the advantage of a random access file?
Why we use int main and void main?
What kind of structure is a house?
What are # preprocessor operator in c?
I heard that you have to include stdio.h before calling printf. Why?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.
Are pointers integers in c?