What is the difference between ‘g’ and “g” in C?



What is the difference between ‘g’ and “g” in C?..

Answer / 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 6 No

Post New Answer

More C Interview Questions

Blade logic interview question. 1st round is a written tests with 15 multiple questions from c and c++. All are simple basic question. Like int main () { Int i=65; Return printf(“%c”, i); } 2nd and 3rd round is technical interview. The position for which I was interview was core UNIX and c. Yes it is for system programming. The company has product name blade server. For their server they are creating their own command for their purpose. Example cd command. We can implement it in a c program by using the chdir() function. So the question asks related to PID, fork, pipe, shared memory, signal. Write a program in c which will act as cp command.

1 Answers   BladeLogic, Infosys,


an algorithem for the implementation of circular doubly linked list

1 Answers  


write a C and C++ programme to implement the A,bubble sort B,quick sort C,insertion sort D,sequential search E,binary search

1 Answers   ADP, TCS,


What are register variables? What are the advantage of using register variables?

0 Answers   TISL,


4. main() { int c=- -2; printf("c=%d",c); }

0 Answers  






The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this

1 Answers  


What is main void in c?

1 Answers  


What is the difference between %d and %i?

0 Answers  


what is bit rate & baud rate? plz give wave forms

0 Answers  


Name the language in which the compiler of "c" in written?

3 Answers   Bajaj,


What is structure in c explain with example?

0 Answers  


#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300

4 Answers   Tieto,


Categories