which operator having highest precedence?
a.)+ b.)++ c.)= d.)%
Answers were Sorted based on User's Feedback
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
What does != Mean in c?
Why is c called "mother" language?
Can you write the algorithm for Queue?
0 Answers College School Exams Tests, TCS,
Explain Basic concepts of C language?
Diff: between this 2 classes in terms of memory class A { int i; char c; double d; }; class A { double d; int i; char c; }; How it is calculating?
what is default constructor?
typedef struct { int i:8; char c:9; float f:20; }st_temp; int getdata(st_temp *stptr) { stptr->i = 99; return stptr->i; } main() { st_temp local; int i; local.c = 'v'; local.i = 9; local.f = 23.65; printf(" %d %c %f",local.i,local.c,local.f); i = getdata(&local); printf("\n %d",i); getch(); } why there there is an error during compiling the above program?
What are the advantages of external class?
what is diference between return 0 and return NULL??
Under what circumstances does a name clash occur?
What are examples of structures?