how many keywords do C compile?
Answers were Sorted based on User's Feedback
Answer / gandhi priyank
there are 32 keywords in c language ...............
| Is This Answer Correct ? | 72 Yes | 9 No |
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 |
Answer / naresh lingampally
In general we use 32/36 keywords..........
| Is This Answer Correct ? | 1 Yes | 4 No |
Answer / vijay.m
there are 36 keywords in c language ...........
| Is This Answer Correct ? | 6 Yes | 30 No |
How do i store a paragraph into a string? for example, if i input a long paragraph, the program will read the words one by one and concatenate them until no word is left.
using only #include <stdio.h> and #include <stdlib.h> Write a program in C that will read an input from the user and print it back to the user if it is a palindrome. The string ends when it encounters a whitespace. The input string is at most 30 characters. Assume the string has no spaces and distinguish between and lowercase. So madam is a palindrome, but MadAm is not a palindrome. Use scanf and %s to read the string. Sample Test: Enter a string: madam madam is a palindrome. Enter a string: 09023 09023 is not a palindrome.
write a program in 'c' to find the value of p[i+1]^n.p,i,n are arguments of a macro and n is a integer
simple program of graphics and thier outpu display with a want what is out put of graohics in c language
what is the output of the code and how? main() { int *ptr,x; x=sizeof(ptr); printf("%d",x); }
Write a C program to perform some of the operation which can be performed using Single linked list
void main() { int a=1; printf("%d %d %d",a,++a,a++); } the output is supposed to be 1 2 2....but it is 3 3 1 this is due to calling conventions of C. if anyone can explain me how it happens?
difference between spiral and waterfall model
Why doesnt the call scanf work?
how can i get this by using for loop? * ** * **** * ******
The program will first compute the tax you owe based on your income. User is prompted to enter income. Program will compute the total amount of tax owed based on the following: Income Tax 0 - $45,000 = 0.15 x income $45,001 - $90,000 = 6750 + 0.20 x (income – 45000) $90,001 - $140,000 = 15750 + 0.26 x (income – 90000) $140,001 - $200,000 = 28750 + 0.29 x (income – 140000) Greater than $200,000 = 46150 + 0.33 x (income – 200000) Dollar amounts should be in dollars and cents (float point numbers with two decimals shown). Tax is displayed on the screen.
What is huge pointer in c?