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

Please provide question papers of NATIONAL INFORMATICS CENTRE for Scientific officer

0 Answers  


Write a routine that prints out a 2-D array in spiral order!

1 Answers   Lucent,


Consider the following C program. #include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain

2 Answers  


Difference between fopen() and open()?

3 Answers   Aricent,


How can I implement opaque (abstract) data types in C? What's the difference between these two declarations? struct x1 { ... }; typedef struct { ... } x2;

2 Answers  






How do you construct an increment statement or decrement statement in C?

0 Answers  


A c program to display count values from 0 to 100 and flash each digit for a secong.reset the counter after it reaches 100.use for loop,. pls guys hepl me.. :(

0 Answers  


What are qualifiers and modifiers c?

0 Answers  


Create a structure to specify data on students as given below: Roll number, Name, Department, Course, and Year of joining. Assume that there are not more than 450 students in the collage. (a) Write a function to print the names of all students who joined in the last 3 years. (b) Write a function to print the data of a student whose roll numbers are divisible by 4.

0 Answers  


Write a program to show the change in position of a cursor using c

0 Answers  


How can you call a function, given its name as a string?

0 Answers  


how to write a c program to print list of fruits in alpabetical order?

0 Answers  


Categories