how many keywords do C compile?
Answer Posted / 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 |
Post New Answer View All Answers
What is the difference between far and near ?
What is the significance of an algorithm to C programming?
What is the difference between functions abs() and fabs()?
How many levels of indirection in pointers can you have in a single declaration?
hi... can anyone help me to make a two-dimensinal arrays in finding the sum of two elements plzzz. thnx a lot...
When a c file is executed there are many files that are automatically opened what are they files?
What is the meaning of c in c language?
If jack lies on Mon, Tue Wed and jill lies on Thursday, Friday and Saturday. If both together tell they lied yesterday. So c the given options and then c cos in the given dates one will be saying the truth and one will be lying. I got Thursday as option because jack is saying the truth he lied yest but jill is lying again as he lies on that day.
Define and explain about ! Operator?
Do pointers take up memory?
You have given 2 array. You need to find whether they will
create the same BST or not.
For example:
Array1:10 5 20 15 30
Array2:10 20 15 30 5
Result: True
Array1:10 5 20 15 30
Array2:10 15 20 30 5
Result: False
One Approach is Pretty Clear by creating BST O(nlogn) then
checking two tree for identical O(N) overall O(nlogn) ..we
need there exist O(N) Time & O(1) Space also without extra
space .Algorithm ??
DevoCoder
guest
Posted 3 months ago #
#define true 1
#define false 0
int check(int a1[],int a2[],int n1,int n2)
{
int i;
//n1 size of array a1[] and n2 size of a2[]
if(n1!=n2) return false;
//n1 and n2 must be same
for(i=0;i
What are shell structures used for?
How do I swap bytes?
What is structure in c definition?
What is the use of getchar functions?