What is identifier in c?
What is the function of volatile in c language?
where are auto variables stored? What are the characteristics of an auto variable?
What is a memory leak? How to avoid it?
Define circular linked list.
Which command is more efficient? *(ptr+1) or ptr[1]
Find the output? void main() {float a=2.0; printf("\nSize of a ::%d",sizeof(a)); printf("\nSize of 2.0 ::%d",sizeof(2.0));}
11 Answers IBM, TCS,
Where can I get an ansi-compatible lint?
Write a c code segment using a for loop that calculates and prints the sum of the even integers from 2 to 30, inclusive?
Total of how many functions are available in c?
Is int a keyword in c?
write a program to rearrange the array such way that all even elements should come first and next come odd
What is external and internal variables What is dynamic memory allocation what is storage classes in C