| Other C Interview Questions |
| |
| Question | Asked @ | Answers |
| |
| Write a function that accepts two numbers,say a and b and
makes bth bit of a to 0.No other bits of a should get
changed. | Scientific-Atlanta | 2 |
| what is a static function | Satyam | 10 |
| How many ways are there to swap two numbers without using
temporary variable? Give the each logic. | | 6 |
| what is the hexidecimal number of 4100? | Google | 14 |
| What's the difference between a linked list and an array?
| | 11 |
| what does data structure mean? | | 7 |
| which operator having lowest precedence??
a.)+ b.)++ c.)= d.)%
| | 4 |
| I have a function which accepts, and is supposed to
initialize,a pointer, but the pointer in the caller remains
unchanged. | | 1 |
| what is the difference between getch() and getchar()? | | 5 |
| what are the languages used in c#? | Infosys | 1 |
| sir,
i cannot find the way how to write aprogram by using
array on queue | IISIT | 1 |
| what information does the header files contain? | BSNL | 5 |
| what is the difference between #include<stdio.h> and
#include "stdio.h" ? | | 2 |
| What are Storage Classes in C ? | HP | 15 |
| related to rdbms query . | | 1 |
| What character terminates all strings composed of character
arrays?
1) 0
2) .
3) END
| | 3 |
| 1)which of following operator can't be overloaded.
a)== b)++ c)?! d)<= | Siemens | 10 |
|
main()
{
int x=10,y=15;
x=x++;
y=++y;
printf("%d %d\n",x,y);
}
output?? | Ramco | 13 |
| main()
{
printf("hello%d",print("QUARK test?"));
}
| | 4 |
| What is the output for the following program
#include<stdio.h>
main()
{
char a[5][5],flag;
a[0][0]='A';
flag=((a==*a)&&(*a==a[0]));
printf("%d\n",flag);
}
| ADITI | 5 |
| |
| For more C Interview Questions Click Here |