what is the difference between <stdio.h> and "stdio.h"
Answer Posted / bathakarai
The preprocessor <stdio.h> means that the directory is
predefined one.
but we specify "stdio.h" in their program that indicates
that the preprocessor is an userdefind one
| Is This Answer Correct ? | 26 Yes | 3 No |
Post New Answer View All Answers
What is printf () in c?
What is volatile variable how do you declare it?
Explain how do you sort filenames in a directory?
What is the difference between the local variable and global variable in c?
Write a program to maintain student’s record. Record should
not be available to any unauthorized user. There are three
(3) categories of users. Each user has its own type. It
depends upon user’s type that which kind of operations user
can perform. Their types and options are mentioned below:
1. Admin
(Search Record [by Reg. No or Name], View All Records,
Insert New Record, Modify Existing Record)
2. Super Admin
(Search Record [by Reg. No or Name], View All Records,
Insert New Record, Modify Existing Record, Delete Single Record)
3. Guest
(Search Record [by Reg. No or Name], View All Records)
When first time program runs, it asks to create accounts.
Each user type has only 1 account (which means that there
can be maximum 3 accounts). In account creation, following
options are required:
Login Name: <6-10 alphabets long, should be unique>
Password: <6-10 alphabets long, should not display
characters when user type>
Confirm Password:
How do you redirect a standard stream?
What is the use of bitwise operator?
What are the functions to open and close file in c language?
What is pointer in c?
Write a program to implement queue.
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
Can static variables be declared in a header file?
What is the right type to use for boolean values in c?
Explain how can I make sure that my program is the only one accessing a file?
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.