How can I determine whether a machines byte order is big-endian or little-endian?
No Answer is Posted For this Question
Be the First to Post Answer
What is property type c?
How to implement a packet in C
why we wont use '&' sing in aceesing the string using scanf
In C programming, what command or code can be used to determine if a number of odd or even?
What is c mainly used for?
Why we not create function inside function.
Explain what is the difference between functions getch() and getche()?
1. Write a program to reverse every second word in a given sentence.
What are the types of data types and explain?
Explain the advantages of using macro in c language?
What are preprocessor directives?
main() { char *ptr = "Ramco Systems"; (*ptr)++; printf("%s\n",ptr); ptr++; printf("%s\n",ptr); } Find the Outputs?