What is the use of bitwise operator?
No Answer is Posted For this Question
Be the First to Post Answer
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
Given a piece of code int x[10]; int *ab; ab=x; To access the 6th element of the array which of the following is incorrect? (A) *(x+5) (B) x[5] (C) ab[5] (D) *(*ab+5} .
why TCS selected more student in the software field from all institution.
How do shell structures work?
how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.
Why isn't it being handled properly?
main() { int i; printf("%d",((i=1)*i-- - --i*(i=-3)*i++ + ++i)); } ans is 24 bt how?pls tell smbody............
What does != Mean in c?
What are the 4 types of organizational structures?
Explain is it better to bitshift a value than to multiply by 2?
A program to allow an input operand and operator from the operator and read on the display and output operand.
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