How can I convert a number to a string?
No Answer is Posted For this Question
Be the First to Post Answer
What is macro?
What is the output of following program ? int main() { int x = 5; printf("%d %d %d\n", x, x << 2, x >> 2); }
Differentiate between the = symbol and == symbol?
what is the little endian and big endian?
what is C?
create a C program that displays one z,two y's,three x's until twenty six A's. plzz answer i need it tomorrow.
Explain what is #line used for?
how can i get the string which is having two spaces at the end.suppose the string is "Hello World ".Now at the end i have two spaces.i need to print with that spaces .
How can you check to see whether a symbol is defined?
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
output for following code??? main() { int x=2,y,z; x*=3+2; printf("1.%d\n",x); x*=y=z=4; printf("2.%d %d %d\n",x,y,z); x=y==z; printf("3.%d\n",x); x==(y=z); printf("%d",x); }
program for swapping two strings by using pointers in c language