- Q What is the brand name for lidocaine (transdermal)?
- Q A customer has recently upgraded from windows 98 to windows xp professional. After the upgrade, it takes longer for windows, menus, sub-menus and other use interface features to open. She wants them to open faster. How can you help this customer?
- Q Explain interrupt latency and how can we decrease it?
- Q What is the response of an eosiniphil to antigen antibody complexes?
- Q What Are SQL*Plus Environment Variables?
- Q What is a output comment?
- Q Coins with the name ‘Simukha’ on them (of Satavahana period) were found in 1976 in Telangana at this place
- Q Ophidiophobia is the fear of what
- Q What is Network Host Names?
- Q How Ember applications are structured?
-
Q
In the following program
#include
main() { char *pDestn,*pSource="I Love You Daddy"; pDestn=malloc(strlen(pSource)); strcpy(pDestn,pSource); printf("%s",pDestn); free(pDestn); } (a)Free() fails (b)Strcpy() fails (c)prints I love You Daddy (d)error