what are the interview question's in the language c
Answer Posted / mallik
a[0] represents only that value at 0 location,but *a
represents the address of that variable stored
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the value of uninitialized variable in c?
What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file
Is a house a mass structure?
Explain the use of keyword 'register' with respect to variables.
Explain the difference between null pointer and void pointer.
What are the advantages of using Unions?
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
What is extern c used for?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
What is a structure and why it is used?
What are run-time errors?
What does the file stdio.h contain?
What the different types of arrays in c?
How does pointer work in c?
What is a void pointer? When is a void pointer used?