formula to convert 2500mmh2o into m3/hr
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between constant pointer and pointer to a constant. Give examples.
Why should I use standard library functions instead of writing my own?
1 1 2 1 2 3 1 2 3 4 1 2 3 1 2 1 generate this output using for loop
What is the use of putchar function?
What is c++ used for today?
write a function to swap an array a[5] elements like a[0] as a[5],a[1] as a[4],....a[5] as a[0].without using more than one loop and use one array not to use temp array?
Can i use Two or More Main Funtion in any C program.?
what is the use of operator ^ in C ? and how it works?
what type of errors are checked during compilation
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above
What is the result main() { char c=-64; int i=-32 unsigned int u =-16; if(c>i){ printf("pass1,"); if(c<u) printf("pass2"); else printf("Fail2");} else printf("Fail1); if(i<u) printf("pass2"); else printf("Fail2") } a)Pass1,Pass2 b)Pass1,Fail2 c)Fail1,Pass2 d)Fail1,Fail2 e)none
Write a routine that prints out a 2-D array in spiral order!