| [Q001] How do you rate yourself in C on
a scale of 1-10 in which 10 being the highest? |
|
|
| [Q002] Why
can't we increment an array like a pointer? |
|
|
| [Q003] Why
multiplication of pointers is not allowed? |
|
|
| [Q004] Find
out the differences - Dynamic linking vs. static linking ? |
|
|
| [Q005] Difference between Arrays and
Pointers? |
|
|
| [Q006] Difference between malloc and
calloc? Why do we need realloc? |
|
|
| [Q007] How to allocate a
two-dimensional array dynamically? |
|
|
| [Q008] Is
the following statement a valid construct?
const char * const
*p;
|
|
|
| [Q009] Write an equivalent portable
version of islower() function in C ? |
|
|
| [Q010] What is conditional compilation? |
|
|
| [Q011] What is structure padding? |
|
|
| [Q012] Identify the problem in the
following C code snippet:
int main()
{
int a,b;
printf("Enter two numbers a,b : ?? ");
scanf("%d,%d",&a,&b);
a = a + b;
b = a - b;
a = a - b;
printf("a=%d,b=%d",a,b);
return 0;
}
|
|
|
| [Q013] Differences between Structures
and Unions? |
|
|
| [Q014] What is a memory leak? |
|
|
[Q015] Can we use 2 or more storage
classes in a single statement to declare a variable like the
following:
extern static int i; |
|
|
Click Here :
Interview
Questions - Part 2
|
|
Send
your feedback about Interview Questions - Part 1 section to
nandakishorkn@rediffmail.com
|
|
|