How is a null pointer different from a dangling pointer?
for questions 14,15,16,17 use the following alternatives:a.int b.char.c.string.d.float
what does ‘Bus Error’ mean?
How will you allocate memory to double a pointer?
Taking an example,differentiate b/w loader and linker ?
write an algorithm and c program to add two 2x2 matrics
What are the properties of union in c?
which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above
main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }
How do you determine if a string is a palindrome?
What are the salient features of c languages?
the number of measuring units from a arbitrary starting point in a record area or control block to some other point a) branching b) recording pointer c) none d) offset
Can you assign a different address to an array tag?