What is Lazy evaluation in C? Give an example.
main() { int a = 65; printf(“%d %o %x”,a,a,a); } Output 65 101 41 Please explain me.How it is coming like that?
What happens if header file is included twice?
What is the correct declaration of main?
write a c program to find the roots of a quadratic equation ax2 + bx + c = 0
11 Answers CSC, St Marys, TATA,
What is sizeof in c?
Why do we use int main instead of void main in c?
write a c program to find largest of three numbers using simple if only for one time.
What is a const pointer, and how does it differ from a pointer to a const?
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
How old is c programming language?
What does a run-time "null pointer assignment" error mean?
what do you mean by enumeration constant?