What are the types of bitwise operator?
No Answer is Posted For this Question
Be the First to Post Answer
Describe the header file and its usage in c programming?
how can i sort numbers from ascending order and descending order using turbo c..
#include<stdio.h> int main() { int i=0,j=1,k=2,m,n=0; m=i++&&j++&&k++||n++; printf("%d,%d,%d,%d,%d",i,j,k,m,n); }
12 Answers Capital IQ, Sasken,
What is clrscr ()?
print 1-50 with two loop & two print Statement
what is the program to display your name in any color?
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.
all c language question
an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational
Add Two Numbers Without Using the Addition Operator
What are c identifiers?
What is difference between array and pointer in c?