What is a c token and types of c tokens?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

Explain what is page thrashing?

0 Answers  


What is masking?

0 Answers  


#include<stdio.h> int f(int,int); int main() { printf("%d",f(20,1)); return 0; } int f(int n,int k) { if(n==0) return 0; else if(n%2)return f(n/2,2*k)+k; else return f(n/2,2*k)-k; } how this program is working and generating output as 9....?

1 Answers  


Differentiate between declaring a variable and defining a variable?

0 Answers  


Why is c called "mother" language?

0 Answers  






Print all the palindrome numbers.If a number is not palindrome make it one by attaching the reverse to it. eg:123 output:123321 (or) 12321

7 Answers   HCL,


What is a #include preprocessor?

0 Answers  


how to make program without <> in libray.

0 Answers  


What is the function of ceil(X) defined in math.h do? A)It returns the value rounded down to the next lower integer B)it returns the value rounded up to the next higher integer C)the Next Higher Value D)the next lower value

3 Answers   Accenture, Wipro,


Explain the priority queues?

0 Answers  


What is difference between structure and union in c programming?

0 Answers  


What is putchar() function?

0 Answers  


Categories