how many keywords do C compile?

Answers were Sorted based on User's Feedback



how many keywords do C compile?..

Answer / gandhi priyank

there are 32 keywords in c language ...............

Is This Answer Correct ?    72 Yes 9 No

how many keywords do C compile?..

Answer / salim

c basically has 2 standards c89 and c99.

There are 32 keywords in c89 standard specification.

c99 standard adds 5 more.they are

_Bool , _Imaginary, _Complex, inline , restrict

So combining the two standards there are 32+5=37 keywords.

Otherwise c89 has 32 and c99 has(32+5)=37 keywords
depending on the standards.

Is This Answer Correct ?    8 Yes 0 No

how many keywords do C compile?..

Answer / chhatrala tejal n.

32

Is This Answer Correct ?    9 Yes 3 No

how many keywords do C compile?..

Answer / sherab gyeltshen

32...

Is This Answer Correct ?    3 Yes 2 No

how many keywords do C compile?..

Answer / iyswarya

32

Is This Answer Correct ?    2 Yes 2 No

how many keywords do C compile?..

Answer / naresh lingampally

In general we use 32/36 keywords..........

Is This Answer Correct ?    1 Yes 4 No

how many keywords do C compile?..

Answer / vijay.m

there are 36 keywords in c language ...........

Is This Answer Correct ?    6 Yes 30 No

Post New Answer

More C Interview Questions

CAN ANYONE PLEASE HELP ON THIS PROGRAM FOR MY EXAM..TQ Write a C program to help a H’s Restaurant automate its breakfast billing system. Your assignment should implement the following items: a. Show the customer the different breakfast items offered by the H’s Restaurant. b. Allow the customer to select more than one item from the menu. c. Calculate and print the bill to the customer. d. Produce a report to present your complete program and show more sample output. Assume that the H’s Restaurant offers the following breakfast menu: Plain Egg $2.50 Bacon and Egg $3.45 Muffin $2.20 French Toast $2.95 Fruit Basket $3.45 Cereal $0.70 Coffee $1.50 Tea $1.80 Your program must do the following task below: a. Define the data structs, menu item types with two components: menu item of type string and menu price of type double. Use an array to declare the data structs. b. Function get data to loads the data into the array menu list. c. Function show menu to show the different breakfast items offered by the restaurant and tell the user how to select the items. d. Function print receipt to calculates and prints the customer receipt. The billing amount should include a 5% tax. e. Format your output with two decimal places. The name of each item in the output must be left-justify. You may assume that the user selects only one item of a particular type. f. The two sample output as shown: Welcome to HiFi’s Restaurant 1 Bacon and Egg $3.45 1 Muffin $2.20 1 Coffee $1.50 Tax 5% $0.35 Amount Due $7.50

1 Answers  


Can we declare variables anywhere in c?

0 Answers  


design and implement a data structure and performs the following operation with the help of file (included 1000 student marks in 5 sub. and %also) 1.how many students are fail in all 5 subjects (if >35) 2. delete all student data those are fail in all 5 subjects. 3. update the grace marks (5 no. if exam paper is 100 marks) 4. arrange the student data in ascending order basis of marks. 5.insert double of deleted students with marks in the list.

0 Answers   TCS,


How do you declare a variable that will hold string values?

0 Answers  


how to capitalise first letter of each word in a given string?

0 Answers  






When should the volatile modifier be used?

0 Answers  


Explain how are portions of a program disabled in demo versions?

0 Answers  


x=2,y=6,z=6 x=y==z; printf(%d",x)

13 Answers   Bharat, Cisco, HCL, TCS,


what is the difference between structural,object based,object orientd programming languages?

1 Answers   PanTerra,


Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?

0 Answers   MNC,


how to convert binary to decimal and decimal to binary in C lanaguage

7 Answers   BPO, Far East Promotions, IBM, RBS,


main() { printf("hello%d",print("QUARK test?")); }

5 Answers  


Categories