what r callback function?
Answer / raghu
A function that is passed (by reference) to another
function. The other function calls the callback function
under defined conditions
| Is This Answer Correct ? | 5 Yes | 1 No |
what is the little endian and big endian?
how to multiply two number taking input as a string (considering sum and carry )
What is omp_num_threads?
read an array and search an element
What is c definition?
How can you increase the size of a statically allocated array?
In which language linux is written?
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
Explain what is the best way to comment out a section of code that contains comments?
a c code by using memory allocation for add ,multiply of sprase matrixes
what are the interview question's in the language c
What is the result main() { char c=-64; int i=-32 unsigned int u =-16; if(c>i){ printf("pass1,"); if(c<u) printf("pass2"); else printf("Fail2");} else printf("Fail1); if(i<u) printf("pass2"); else printf("Fail2") } a)Pass1,Pass2 b)Pass1,Fail2 c)Fail1,Pass2 d)Fail1,Fail2 e)none