C Language ---(E)Programming Interview Questions----1

1. Write a c program to print Hello world without using any semicolon.

Explanation:
Solution: 1void main(){
 if(printf("Hello world")){
 }
}
Solution: 2
void main(){
 while(!printf("Hello world")){
 }
}

Solution: 3
 void main(){ switch(printf("Hello world")){ }}

2. Swap two variables without using third variable.

Explanation:

#include<stdio.h>
int main(){
 int a=5,b=10;
//process one
 a=b+a;
 b=a-b;
 a=a-b;
 printf("a= %d b= %d",a,b);

//process two
 a=5;
 b=10;
 a=a+b-(b=a);
 printf("\na= %d b= %d",a,b);

//process three
 a=5;
 b=10;
 a=a^b;
 b=a^b;
 a=b^a;
 printf("\na= %d b= %d",a,b);

//process four
 a=5;
 b=10;
 a=b-~a-1;
 b=a+~b+1;
 a=a+~b+1;
 printf("\na= %d b= %d",a,b);

//process five
 a=5,
 b=10;
 a=b+a,b=a-b,a=a-b;
 printf("\na= %d b= %d",a,b);
 return 0;
}

3. What is dangling pointer in c? 

Dangling pointer:
If any pointer is pointing the memory address of any variable but after some variable has deleted from that memory location while pointer is still pointing such memory location. Such pointer is known as dangling pointer and this problem is known as dangling pointer problem.
Initially:

Later:

For example:
What will be output of following c program?
#include<stdio.h>
int *call();
int main()
{
int *ptr;
ptr=call();
fflush(stdin);
printf("%d",*ptr);
return 0;
}
int * call()
{
int x=25;
++x;
return &x;
}
Output: Garbage value

Note: In some compiler you may get warning message returning address of local variable or temporary
Explanation: variable x is local variable. Its scope and lifetime is within the function call hence after returning address of x variable x became dead and pointer is still pointing ptr is still pointing to that location.
Solution of this problem:
Make the variable x is as static variable. In other word we can say a pointer whose pointing object has been deleted is called dangling pointer.
#include<stdio.h>int *call();
int main()
{
int *ptr;
ptr=call();
fflush(stdin);
printf("%d",*ptr);
return 0;
}
int * call()
{
static int x=25;
++x;
return &x;
}
Output: 26

 4. What is wild pointer in c?

Explanation:
A pointer in c which has not been initialized is known as wild pointer.
Example:
What will be output of following c program?
int main()
{int *ptr;
printf("%u\n",ptr);
printf("%d",*ptr);
return 0;
}
Output: Any address
Garbage value
Here ptr is wild pointer because it has not been initialized. There is difference between the NULL pointer and wild pointer. Null pointer points the base address of segment while wild pointer doesn’t point any specific memory location.

5. What are merits and demerits of array in c?

Merits:
(a) We can easily access each element of array.
(b) Not necessity to declare too many variables.
(c) Array elements are stored in continuous memory location.
Demerit:
(a) Wastage of memory space. We cannot change size of array at the run time.
(b) It can store only similar type of data.

Comments

Popular posts from this blog

[RG] Horror movies

107.John Wayne GACY Jr.

30. SERIAL KILLERS AND ASTROLOGY