What is function in c with example?
Explain the binary height balanced tree?
What are header files in c programming?
swap 2 numbers without using third variable?
When should a far pointer be used?
Can you please explain the difference between strcpy() and memcpy() function?
What is the difference between declaring a variable and defining a variable?
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
How do you determine the length of a string value that was stored in a variable?
How can I direct output to the printer?
using only #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; }
Describe static function with its usage?
Why are all header files not declared in every c program?
Explain what are multidimensional arrays?