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 |
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
Hai sir, I had planned to write the NIC scientific engineer exam , plz post the sample question......
Tell me about low level programming languages.
Is c is a procedural language?
write a progam to display the factors of a given number and disply how many prime numbers are there?
How to calculate Total working time using Login and logout?
2 Answers CTS, Cygnus, Infosys, Signal Networks, TCS, Wipro,
how to estimate the disk access time? e.g. the time between read one byte and another byte in the disk.
A stack can be implemented only using array?if not what is used?
What is stack in c?
main() { int i=5; printf("%d%d%d%d",i++,i--,i); }
#include<stdio.h> void main() { int a=10,b=20,c=30; printf("%d",scanf("%d%d%d",&a,&b,&c)); } what is the output for this?
What is a volatile keyword in c?