What is Lazy evaluation in C? Give an example.
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
What is the difference between scanf and fscanf?
main() { int a[10]; printf("%d",*a+1-*a+3); }
What is meant by global static? why we have to use static variable instead of Global variable
how should functions be apportioned among source files?
Write a c program to print the sizes and ranges of different data types in c?
what is C?
What is break statement?
How do c compilers work?
What is difference between structure and union in c?
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?