Answer Posted / priya nagmoti
In computer science, a preprocessor is a program that
processes its input data to produce output that is used as
input to another program. The output is said to be a
preprocessed form of the input data, which is often used by
some subsequent programs like compilers
| Is This Answer Correct ? | 2 Yes | 4 No |
Post New Answer View All Answers
Where we use clrscr in c?
using only #include
Explain spaghetti programming?
What is declaration and definition in c?
what is the role you expect in software industry?
Why do we use int main instead of void main in c?
What is extern variable in c with example?
What is typeof in c?
What are variables 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 can I change their mode to binary?
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
What does c value mean?
What are identifiers c?
Explain how do I determine whether a character is numeric, alphabetic, and so on?