related proverb of "dont count your chicken before it hatches"



related proverb of "dont count your chicken before it hatches"..

Answer / guest

Don't put the cart before the horse...

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

Is it better to use malloc() or calloc()?

1 Answers   Aspire, Infogain,


What is memory leak in c?

1 Answers  


which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above

1 Answers  


Is there any demerits of using pointer?

1 Answers  


#include<stdio.h> #include<conio.h> int main() { int a[4][4]={{5,7,5,9}, {4,6,3,1}, {2,9,0,6}}; int *p; int (*q)[4]; p=(int*)a; q=a; printf("\n%u%u",p,q); p++; q++; printf("\n%u%u",p,q); getch(); return 0; } what is the meaning of this program?

2 Answers  


What are bitwise shift operators in c programming?

1 Answers  


What is the method to save data in stack data structure type?

1 Answers  


What are loops in c?

1 Answers  


Is it possible to use curly brackets ({}) to enclose single line code in c program?

1 Answers  


Write a program to interchange two variables without using the third variable?

17 Answers   Accenture, College School Exams Tests, Infotech,


Explain pointer. What are function pointers in C?

1 Answers   HCL,


What is a pointer in c?

4 Answers  


Categories