What is meant by 'bit masking'?
No Answer is Posted For this Question
Be the First to Post Answer
c pgm count no of lines , blanks, tabs in a para(File concept)
How pointer is different from array?
What are c header files?
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;
What is union and structure in c?
Toggle nth bit in a given integer - num
Difference between data structure and data base.
7 Answers CTS, Value Labs, Zoho,
Why clrscr is used after variable declaration?
Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
Can we declare a function inside a function in c?
void swap(int a,int b) { a=a+b; b=a-b; a=a-b; } in this code always gives the same result for all case