What is the difference between ‘g’ and “g” in C?
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 |
how does the for loop work actually..suppose for the following program how it ll work plz explain to me for(i=5;i>=0;i--) prinf(i--);
write a program to swap two numbers without using temporary variable?
An array name contains base address of the array. Can we change the base address of the array?
How can you avoid including a header more than once?
What is that continue statement??
simple program of graphics and thier outpu display with a want what is out put of graohics in c language
What are the key features in c programming language?
Is c is a low level language?
how does the C compiler interpret the following two statements p=p+x; q=q+y; a. p=p+x; q=q+y b. p=p+xq=q+y c. p=p+xq; q=q+y d. p=p+x/q=q+y
C program to read the integer and calculate sum and average using single dimensional array
Write a c program to build a heap method using Pointer to function and pointer to structure ?
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?