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 |
what are the general concepts of c and c++
What is the function of multilevel pointer in c?
main() { int a[3][4] ={1,2,3,4,5,6,7,8,9,10,11,12} ; int i, j , k=99 ; for(i=0;i<3;i++) for(j=0;j<4;j++) if(a[i][j] < k) k = a[i][j]; printf("%d", k); }
4 Answers Vector, Wipro, Zoho,
What are register variables? What are the advantage of using register variables?
What is period operator in c?
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
What are the various topologies? Which one is the most secure?
what is difference between procedural language and functional language ?
What is clrscr in c?
What are local variables c?
how does the for loop work actually..suppose for the following program how it ll work plz explain to me for(i=5;i>=0;i--) prinf(i--);
int i; i=2; i++; if(i=4) { printf(i=4); } else { printf(i=3); } output of the program ?