| Back to Questions Page |
| |
| Question |
what is the maximum limit of row and column of a matrix in c
programming. in linux . |
Rank |
Answer Posted By |
|
Question Submitted By :: Navdeepgupta |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | o to 35565  |
| Unmesh |
| |
| |
| Question |
wt is d full form of c |
Rank |
Answer Posted By |
|
Question Submitted By :: Satya.babi |
| This Interview Question Asked @ Wipro |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | computing language  |
| Satya.babi |
| |
| |
| Question |
What is volatile in c language? |
Rank |
Answer Posted By |
|
Question Submitted By :: Dhakar123 |
| This Interview Question Asked @ HCL |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | compiler should not make any assumption about the variable
which declared as volatile.  |
| Venkata Mahesh |
| |
| |
|
|
| |
| Question |
what is available in C language but not in C++? |
Rank |
Answer Posted By |
|
Question Submitted By :: Maayasweety |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | In c u can create variable with name new and delete but not
in c++.  |
| Mukhtar |
| |
| |
| Question |
what is self refrential structure |
Rank |
Answer Posted By |
|
Question Submitted By :: Alok.chauhan9 |
| This Interview Question Asked @ HCL |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | if a structure tag is a datatype of a variable or data
member then it is known as a self referential structure.
for ex
template <class t>
struct node
{
t data;
node *link;//here link is a variable which contains data
type of structuretag ie node
}  |
| Silpa |
| |
| |
| Answer | whenever a structure is been pointed by the same structure
pointer which is the member of the same structure is called
as self referential structure....
thank u  |
| Vignesh1988i |
| |
| |
| Question |
write a program to compare 2 numbers without using logical
operators? |
Rank |
Answer Posted By |
|
Question Submitted By :: Maddy143 |
| This Interview Question Asked @ IBM |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | main()
{
int x,y;
sf("%d,%d",&x,&y);
if(x^y)
pf("not equal");
else
pf("equal");
}  |
| Bashu |
| |
| |
|
| |
|
Back to Questions Page |