Does * p ++ increment p or what it points to?
Where does the name "C" come from, anyway?
What is local and global variable in c?
Is void a keyword in c?
What does stand for?
Explain the process of converting a Tree into a Binary Tree.
What are the different types of data structures in c?
Why is void main used?
Why array is used in c?
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
What is extern keyword in c?
#include
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
How are 16- and 32-bit numbers stored?
What is void pointers in c?