formula to convert 2500mmh2o into m3/hr


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

main() { int i = -3,j=2,k=0,m; m= ++i || ++j && ++k; printf("%d%d%d",i,j,k,m); }

7 Answers   HCL,


#include <stdio.h> void main() { int i=-1,j=1,k,l; k=!i&&j; l=!i||j; printf ("%d%d",k,l) ; }

3 Answers   SRG,


How are 16- and 32-bit numbers stored?

0 Answers  


what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }

4 Answers  


How can I copy just a portion of a string?

0 Answers  






what is a NULL Pointer? Whether it is same as an uninitialized pointer?

0 Answers   TISL,


c program to print a name without using semicolon

9 Answers   TCS, Wipro,


write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.

0 Answers   TCS,


Tell me what is null pointer in c?

0 Answers  


Write any data structure program (stack implementation)

1 Answers   HTC,


Concat two string with most overlapped substring has to removeĀ  "abcd"+ "cdef" = "abcdef

6 Answers  


How can I read and write comma-delimited text?

0 Answers  


Categories