Answer Posted / 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 |
Post New Answer View All Answers
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
praagnovation
What are the types of type qualifiers in c?
What is unsigned int in c?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
What does stand for?
Write a code of a general series where the next element is the sum of last k terms.
What is an array in c?
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above
Describe the order of precedence with regards to operators in C.
write a program in c language to print your bio-data on the screen by using functions.
What is graph in c?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
What are linker error?
What does the c in ctime mean?