What is Full Form of C and Why We use C
Answers were Sorted based on User's Feedback
Answer / jyotheeswar
C is a compiler based language so, C is nothing but Compiler
| Is This Answer Correct ? | 9 Yes | 19 No |
Answer / rahul
It is named c because it came after BCPL since the second
letter of BCPL after B is C, hence named as C and not
because C comes after B in English .
It is widely used for developing system level softwares and
applications.
| Is This Answer Correct ? | 4 Yes | 14 No |
Answer / karthik
when C-language is launched.. there was an another language
with names A and B. so,to follow sequence it is named as C
| Is This Answer Correct ? | 13 Yes | 26 No |
accept character from keyboard untill the user presses the enter key.If the user enters any character other than upper case(A-Z)alphabets program should stop taking any input
How can I make sure that my program is the only one accessing a file?
What are the different properties of variable number of arguments?
What is a protocol in c?
Explain the use of 'auto' keyword in c programming?
Why doesnt that code work?
How was c created?
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: <must match with the Password, should not display characters when user type> Account Type: <One character long, A or S or G where A for Admin, S for Super Admin, G for Guest> 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.
please help me..... please codes and flowchart plz turbo c lang po yan.....please asap response... 3. Make an astrology program. The user types in his or her birthday (month, day, and year as integer), and the program responds with the user’s zodiac sign, horoscope, and other information related to it. If the user’s birth year falls into a leap year, your program should display an appropriate message for it. NOTES: Conditional Statements: it should be with graphics
program to convert a integer to string in c language'
What are the advantages and disadvantages of a heap?
Write a program to print numbers from 1 to 100 without using loop in c?