Tell me what are bitwise shift operators?
No Answer is Posted For this Question
Be the First to Post Answer
what is pointer ? what is the use of pointer?
Explain what is a static function?
To what value do nonglobal variables default? 1) auto 2) register 3) static
What does. int *x[](); means ?
What is difference between the following 2 lines…. int temp = (int)(0x00); int temp = (0x00int);
What are the benefits of organizational structure?
write a program to generate address labels using structures?
Why do we use namespace feature?
Why is a semicolon (;) put at the end of every program statement?
What are external variables in c?
which of the following statements is incorrect a.typedef struct new{ int n1; char n2; } DATA; b.typedef struct { int n3; char *n4; }ICE; c.typedef union { int n5; float n6; } UDT; d.#typedef union { int n7; float n8; } TUDAT;
main() { enum _tag{ left=10, right, front=100, back}; printf("%d, %d, %d, %d", left, right, front, back); }