| Other C Interview Questions |
| |
| Question | Asked @ | Answers |
| |
| What are data breakpoints? | Adobe | 1 |
| Consider a language that does not have arrays but does have
stacks as a data type.and PUSH POP..are all defined .Show
how a one dimensional array can be implemented by using two
stacks. | Google | 3 |
| what is the defrenece between structure and union | | 5 |
| Write a C function to search a number in the given list of
numbers. donot use printf and scanf | Honeywell | 6 |
| Define function ?Explain about arguments? | Geometric-Software | 2 |
| how can i get output like this?
1
2 3
4 5 6 | Excel | 3 |
| C program to find frequency of each character in a text
file? | | 3 |
| Why cann't whole array can be passed to function as value. | | 1 |
| How to add two numbers with using function?
| | 3 |
| fun(int x)
{
if(x > 0)
fun(x/2);
printf("%d", x);
}
above function is called as:
fun(10);
what will it print?
} | NDS | 13 |
| Design a program using an array that searches a number if it
is found on the list of the given input numbers and locate
its exact location in the list. | | 3 |
| What does a run-time "null pointer assignment" error mean? | | 2 |
| how to find the binary of a number? | Infosys | 5 |
| wap in c to accept a number display the total count of digit | | 4 |
| Main must be written as
a.the first function in the program
b.Second function in the program
c.Last function in the program
d.any where in the program
| TCS | 12 |
| how can i make a program with this kind of output..
Enter a number: 5
0
01
012
0123
01234
012345
01234
0123
012
01
0 | Wipro | 3 |
| which one of follwoing will read a character from keyboard
and store in c
a)c=getc()
b)c=getchar()
c)c=getchar(stdin)
d)getc(&c)
e)none | | 5 |
| What is structure packing ? | HP | 1 |
| differentiate between
const char *a;
char *const a; and
char const *a;
| HCL | 1 |
| why we shiuld use main keyword in C | | 5 |
| |
| For more C Interview Questions Click Here |