How can a number be converted to a string?
We can convert int to String in java using String. valueOf() and Integer. toString() methods. Alternatively, we can use String.
| Is This Answer Correct ? | 0 Yes | 0 No |
what are the stages of compilation
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
Why does not use getgh(); and <conio.h> in c language.
What is meant by int fun const(int a, int b) { .... ... }
What are static variables in c?
write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1
How does the assert() function work?
What is c value paradox explain?
what is foreign key in c language?
Can you write the function prototype, definition and mention the other requirements.
How would you print out the data in a binary tree, level by level, starting at the top?
Can i use “int” data type to store the value 32768? Why?