What is a c token and types of c tokens?
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of structure padding in c?
4. main() { int c=- -2; printf("c=%d",c); }
Explain what does it mean when a pointer is used in an if statement?
What is a constant and types of constants in c?
What is the right type to use for boolean values in c?
find the output of the following program main() { int x=5, *p; p=&x; printf("%d",++*p); }
What is wrong in this statement?
Define recursion in c.
Write a C program to print 1 2 3 ... 100 without using loops?
How can I invoke another program from within a C program?
Is null a keyword in c?
What is the use of extern in c?