What will be the output of following program
#include
main()
{
int x,y = 10;
x = y * NULL;
printf("%d",x);
}
.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; }
can u give me the good and very optimised code for a car racing game?
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
What are the advantages and disadvantages of c language?
What is the size of enum in bytes?
What's the best way of making my program efficient?
What is wrong with this code?
What is the meaning of typedef struct in c?
Where static variables are stored in memory in c?
How do we open a binary file in Read/Write mode in C?
How to write a code for reverse of string without using string functions?
write function to reverse char array ... without using second array