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 is the importance of c in your views?
What is the difference between declaring a variable by constant keyword and #define ing that variable?
What is the use of define in c?
In a switch statement, explain what will happen if a break statement is omitted?
int a[3][5]={ {1,2,3,4,5],{2,3,4,5,6},{10,11,12,13,14}}; int *p=&a; printf(ā%dā,*(*(x+1)+3));
what is the difference between strcpy() and memcpy() function?
What is use of #include in c?
Write a program that takes three variables(a,b,c) in as separate parameters and rotates the values stored so that value a goes to b,b,to c and c to a
#include<stdio.h> int main() { int a[3][3][2]= {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18}; printf("%d\n",*(*(*a+1)); return 0; } What will be the output of the above question? And how?
what are the different storage classes in c?
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...
Program to write some contents into a file using file operations with proper error messages.