What is the purpose of 'register' keyword in c language?
No Answer is Posted For this Question
Be the First to Post Answer
how would a 4*3 array A[4][3] stored in Row Major Order?
How many types of arrays are there in c?
Are the variables argc and argv are local to main?
.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; }
main() { int x=5,y=10,z=0; x=x++ + y++; y=y++ + ++x; z=x++ + ++y; printf("%d%d%d\n",x,y,z); }
What tq means in chat?
write a c program in such a way that if we enter the today date the output should be next day's date.
Why are algorithms important in c program?
When is an interface "good"?
Can you define which header file to include at compile time?
what is the difference between declaration ,defenetion and initialization of a variable?
What is scope rule in c?