What is Lazy evaluation in C? Give an example.
how to print 2-D array using a single for loop?
2 Answers Mind Tree, TCS, Value Labs,
How can I increase the allowable number of simultaneously open files?
question-how to run a c programme.
code for selection sort?
Why the below program throughs error during compilation? #include<stdio.h> #include<conio.h> enum { ZERO, ONE, TWO, }; main() { printf("%d",&TWO); getch(); }
print ur name 20,000 times without using inbuilt library functions like printf,scanf,gets,puts,getchar or putchar
what are brk, sbrk?
What is hash table in c?
What is the difference between malloc() and calloc()?
what is the need for main function in c?
wap in c to accept a number display the total count of digit
Find Error if any in below code, Justify ur answer: struct xx { int a; struct yy { char c; struct xx* p; } struct yy* q; }