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 |
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
When should volatile modifier be used?
Explain how can a program be made to print the line number where an error occurs?
Explain output of printf("Hello World"-'A'+'B'); ?
void main() {int a[5],i,b=16; for(i=0;i<5;i++) a[i]=2*i; f(a,5,b); for(i=0;i<5;i++) printf("\n %d",a[i]); printf("\n %d",b); } f(int *x,int n,int y) { int i; for(i=0;i<n;i++) *(x+i)+=2; y=y+2; }wat r the errors in the prg.and improvise the prg to get o/p.?
write a program that uses point of sale system. which are mainly used by retail markets, where the is a database inventory list, a slip should be printed for the customer. manage should be able to access what has been sold and what is left from stock?
I need a sort of an approximate strcmp routine?
what is data structure?
Can we write a program without main() function?
matrix multiplication fails introspect the causes for its failure and write down the possible reasons for its failurein c language.
What is the difference between new and malloc functions?
write a program that will print %d in the output screen??