Answer Posted / hrpynux@gmail.com
G stands for Newton's universal gravitational constant, whereas g stands for the acceleration due to gravity at a certain point. G = 6.67300 × 10 -11 N.m 2.kg -2, G is a constant throughout space and time and it is a scalar quantity.
| Is This Answer Correct ? | 0 Yes | 8 No |
Post New Answer View All Answers
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
What is a struct c#?
What is static identifier?
What is quick sort in c?
In c language can we compile a program without main() function?
What is #include called?
What is a ternary operator in c?
What is build process in c?
develop algorithms to add polynomials (i) in one variable
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
What is variable declaration and definition in c?
What does it mean when a pointer is used in an if statement?
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
Can a pointer be volatile in c?
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?