| Other C Interview Questions |
| |
| Question | Asked @ | Answers |
| |
| Why is conio.h not required when we save a file as .c and
use clrscr() or getch() ? | | 2 |
| two variables are added answer is stored on not for third
variable how it is possible? | | 3 |
| pgm to reverse string using arrays i.e god is love becomes
love is god)
(assumption:only space is used for seperation of words)
no addtional memory used.i.e no temporary arrays can used. | Persistent | 4 |
| 2.main
{
int x,j,k;
j=k=6;x=2;
x=j*k;
printf("%d", x);
| HCL | 6 |
| what are the difference between ANSI C and Let Us c and Turbo C | LG-Soft | 1 |
| what is a headerfile?and what will be a program without it
explain nan example? | Assurgent | 5 |
| write a C code
to reverse a string using a recursive function, without
swapping or using an extra memory.
| Motorola | 2 |
| 6)swap(int x,y)
{
int temp;
temp=x;
x=y;
y=temp;
}
main()
{
int x=2;y=3;
swap(x,y);
}
after calling swap ,what are yhe values x&y?
| | 2 |
| implement general tree using link list | Wipro | 1 |
| how to find turn around time in operating system? | | 1 |
| how to implement stack operation using singly linked list | | 1 |
| What is the output for the program given below
typedef enum grade{GOOD,BAD,WORST,}BAD;
main()
{
BAD g1;
g1=1;
printf("%d",g1);
}
| ADITI | 3 |
| convert 12345 to 54321 withoutusing strig | | 3 |
| Write a C program that computes the value ex by using the
formula
ex =1+x/1!+x2/2!+x3+3!+………….
| | 1 |
| write the program for prime numbers? | TCS | 10 |
| write a program to insert an element at the specified
position in the given array in c language | IBM | 2 |
| Write a program for the following series:
1*3*5-2*4*6+3*5*7-4*6*8+.................up to nterms | Convex-Digital | 4 |
| i want to know aptitude questions,technical questions | | 2 |
| c program to add and delete an element from circular queue
using array | | 1 |
| What ios diff. Between %e & %f? | Honeywell | 1 |
| |
| For more C Interview Questions Click Here |