Answer Posted / qint
num ^ (1 << n)
| Is This Answer Correct ? | 31 Yes | 18 No |
Post New Answer View All Answers
What is an identifier?
Please send me WIPRO technical question to my mail ID.. its nisha_g28@yahoo.com please its urgent
How to write c functions that modify head pointer of a linked list?
Why is c so powerful?
Which control loop is recommended if you have to execute set of statements for fixed number of times?
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.
Explain is it valid to address one element beyond the end of an array?
Is a pointer a kind of array?
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
What is a 'null pointer assignment' error?
how to print the character with maximum occurence and print that number of occurence too in a string given ?
Differentiate between the = symbol and == symbol?
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
Explain the difference between malloc() and calloc() function?