What is Lazy evaluation in C? Give an example.



What is Lazy evaluation in C? Give an example...

Answer / arunkumar

Stack overflow...

Is This Answer Correct ?    0 Yes 4 No

Post New Answer

More C Interview Questions

Heyyy All, Just a challenge . A C program with if Else if(){ /// insert sumthing print ("in if") // insert sumting } else { ///// insert sumthing print ("in else"); //// insert sumthing } can anyone modify it so that program prints. if and else both

3 Answers  


What is external and internal variables What is dynamic memory allocation what is storage classes in C

3 Answers  


hi any body pls give me company name interview conduct "c" language only

0 Answers  


What is graph in c?

0 Answers  


What are reserved words?

0 Answers  






Q.1 write a program to create binary tree 1 to 16 numbers? Q.2 write a program to creat a binary search tree for the member that is given by user?

0 Answers   Case, IBM,


Why is the code below functioning. According to me it MUST NOT.

1 Answers  


What is difference between the following 2 lines…. int temp = (int)(0x00); int temp = (0x00int);

3 Answers   Bosch,


What is FIFO?

0 Answers  


#include<stdio.h> main() {int i=1;j=1; for(;;) {if(i>5) break; else j+=1; printf("\n%d",j) i+=j; } }

7 Answers   HCL,


How can we allocate array or structure bigger than 64kb?

2 Answers   CSC,


#include<stdio.h> int SumElement(int *,int); void main(void) { int x[10]; int i=10; for(;i;) { i--; *(x+i)=i; } printf("%d",SumElement(x,10)); } int SumElement(int array[],int size) { int i=0; float sum=0; for(;i<size;i++) sum+=array[i]; return sum; } output?

5 Answers   Ramco,


Categories