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 |
sqrt(x+sqrt(x+sqrt(x+sqrt(x))))=2; Find the value of x?
how to go with this?
suppose there are five integers write a program to find larger among them without using if- else
what will be printed by this printf? printf("%c",printf("hi")["sharkselva"])); }
the maximum width of a c variable name can be a) 6 characters b) 8 characters c) 10 characters d) 20 characters
How can we open a file in Binary mode and Text mode?what is the difference?
Program to swap the any two elements in an array containing N number of elements?
1 Answers Bosch, Glenwood, Ugam Solutions,
#include<stdio.h> void main() { int a=10,b=20,c=30; printf("%d",scanf("%d%d%d",&a,&b,&c)); } what is the output for this?
What is an auto keyword in c?
What’s the special use of UNIONS?
What is a static function in c?
What are comments and how do you insert it in a C program?