formula to convert 2500mmh2o into m3/hr
No Answer is Posted For this Question
Be the First to Post Answer
in b=6.6/a+(2*a+(3*c)/a*d)/(2/n); which operation will be performed first a) 6.6/a b) 2*a c) 3*c d) 2/n
how to capitalise first letter of each word in a given string?
What is difference between stdio h and conio h?
code for selection sort?
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
What are the advantages and disadvantages of c language?
Given an array of characters, how would you reverse it? How would you reverse it without using indexing in the array?
What is array of structure in c?
char ch="{'H','I',0};printf("%s",ch);what is output
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
pick out the odd one out of the following a.malloc() b.calloc() c.free() d.realloc()
Do you know the difference between malloc() and calloc() function?