how to TOGGLE Nth bit of variable in a MACRO
dennis ritchie invented C language in AT&T bell laboratory what is the extension of AT&T?
What is indirection?
Explain the use of fflush() function?
Why malloc is faster than calloc?
What compilation do?
7 Answers Geometric Software, Infosys,
Whats wrong with the following function char *string() { char *text[20]; strcpy(text,"Hello world"); return text; }
What are data structures in c and how to use them?
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
How can I avoid the abort, retry, fail messages?
Differentiate between null and void pointers.
How to print "Hi World" without using semi colon?
what is the difference between these initializations? Char a[]=”string”; Char *p=”literal”; Does *p++ increment p, or what it points to?