Answer Posted / bikash
~ is used to complement a hex value.
eg a = ~0x01;
//now a will have 0xFE;
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
How can I prevent another program from modifying part of a file that I am modifying?
to find the closest pair
Can you subtract pointers from each other? Why would you?
write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);
Does c have an equivalent to pascals with statement?
What is ## preprocessor operator in c?
What is a structural principle?
Explain the difference between the local variable and global variable in c?
What is pointer to pointer in c language?
What is the main difference between calloc () and malloc ()?
How many keywords (reserve words) are in c?
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?
What does the c preprocessor do?
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.