the maximum value that an integer constant can have is
a) -32767
b) 32767
c) 1.701e+38
d) -1.7014e+38
how many keywords do C compile?
7 Answers Microsoft, Practical Viva Questions,
what is the difference between NULL('\0') and 0?
plz answer....A program that takes 3 variables e.g a,b,c in as seperate parameters and rotates the values stored so that value goes a to b, b to c and c to a .
explain about storage of union elements.
Is c language still used?
What is 2 d array in c?
What are high level languages like C and FORTRAN also known as?
Suppose I want to write a function that takes a generic pointer as an argument and I want to simulate passing it by reference. Can I give the formal parameter type void **, and do something like this? void f(void **); double *dp; f((void **)&dp);
main() { char p[] = "hello world!"; p = "vector"; printf("%s",p); }
2 Answers Vector, Vector India,
write a program in c language to print your bio-data on the screen by using functions.
What does & mean in scanf?
What is the default value of local and global variables in c?