to convert a string without using decrement operater and
string functions
Answer / shiva
itoa() int to string
atoi() this is to string to int
| Is This Answer Correct ? | 1 Yes | 0 No |
Is there a way to have non-constant case labels (i.e. Ranges or arbitrary expressions)?
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....
What is key word in c language?
Efficient data structure for store/search list of 1000 records a)array b)double linked list c)circular queue d)hash table
What is the need of structure in c?
how to print this sereis 2 4 3 6 5..........?
Write a program to find the biggest number of three numbers in c?
Which is the best sort method for library management?
what is the first address that gets stored in stack according to a C or C++ compiler???? or what will be the first address that gets stored when we write a C source code????????
Explain data types & how many data types supported by c?
Binary tree traversing