What is key word in c language?

Answer Posted / vijay mundra

Keyword are some reserved word that are used in programming
for their pre defined actions..

Is This Answer Correct ?    22 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

When is the “void” keyword used in a function?

840


Write a code to determine the total number of stops an elevator would take to serve N number of people.

730


Explain the use of bit fieild.

716


What is pragma c?

616


What is use of pointer?

588






Explain c preprocessor?

684


Why is this loop always executing once?

618


i want to switch my career from quailty assurance engineering to development kindly guide me from which programming language its better for me to start plz refer some courses or certifications too i have an experience of 1.5 yrs in QA field.Kindly guide me

1481


Write a program to swap two numbers without using third variable in c?

619


Explain what is the use of a semicolon (;) at the end of every program statement?

737


Can the “if” function be used in comparing strings?

598


Why doesnt long int work?

614


What is the easiest sorting method to use?

636


Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.

706


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: Account Type: Login Name, Password and Account Type should be stored in a separate file in encrypted form. (Encryption means that actual information should be changed and Decryption means that Encrypted information is changed back to the actual information) If any of the above mentioned requirement(s) does not meet then point out mistake and ask user to specify information again. When Program is launched with already created accounts, it will ask for user name and password to authenticate. On successful authentication, give options according to the user’s type.

1514