| Other C Interview Questions |
| |
| Question | Asked @ | Answers |
| |
| f(x,y,z)
{
y = y+1;
z = z+x;
}
main()
{
int a,b;
a = 2
b = 2;
f(a+b,a,a);
print a;
}
what is the value of 'a' printed | | 4 |
| what type of language is C? | Microsoft | 2 |
| Predict the output or error(s) for the following:
25. main()
{
printf("%p",main);
}
| ME | 3 |
| how can we use static and extern?and where can we use this? | Excel | 3 |
| what are the general concepts of c and c++ | | 1 |
| To what value do nonglobal variables default?
1) auto
2) register
3) static
| | 4 |
| how memory store byte
| Huawei | 3 |
| Write code for atoi(x) where x is hexadecimal string. | Adobe | 2 |
| Write a program to write a given string in maximum
possibilities?
i.e str[5]="reddy";
i.e we can write this string in 120 ways
for that write a program | Subex | 3 |
| How to calculate Total working time using Login and
logout? | Wipro | 2 |
| write a program that explain #define and # undef directive | | 1 |
|
main()
{
int x=10,y=15;
x=x++;
y=++y;
printf("%d %d\n",x,y);
}
output?? | Ramco | 13 |
| 1
232
34543
4567654
can anyone tell me how to slove this c question | | 3 |
| create an SINGLE LINKED LISTS and reverse the data in the
lists completely | | 3 |
| What are the average number of comparisons required to sort
3 elements? | | 2 |
| DIFFERNCE BETWEEN THE C++ AND C LANGUAGE? | Wipro | 1 |
| difference between my-strcpy and strcpy ? | Geometric-Software | 3 |
| const char *
char * const
What is the differnce between the above tow?.
| TCS | 5 |
| what is the size of an integer variable? | | 1 |
| if the address of a[1,1] and a[2,1] are 1000 and 1010
respectively and each occupies 2 bytes then the array has
been stored in what order? | | 3 |
| |
| For more C Interview Questions Click Here |