main()
{
int i;
printf("%d",i^i);
}
Answer / naresh
output will be Zero as exclusive or'ing of two same no's result in zero
| Is This Answer Correct ? | 2 Yes | 0 No |
write a program in c language for the multiplication of two matrices using pointers?
What are the applications of c language?
A.C func() { pritnf(" in fuction %d",MACRO); } MAIN.c testfunc() { #define MACRO 10 printf("in test function %d", MACRO); } main() { printf("in main %d",MACRO); func(); testfunc(); getch(); }
What is a scope resolution operator in c?
What is the right way to use errno?
What is quick sort in c?
Write a program with dynamically allocation of variable.
What does %c do in c?
Explain b+ tree?
How to set a variable in the environment list?
10. Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning
1.find the second maximum in an array? 2.how do you create hash table in c? 3.what is hash collision