Do you know what is a programing language ?
No Answer is Posted For this Question
Be the First to Post Answer
There are 8 billiard balls, and one of them is slightly heavier, but the only way to tell was by putting it on a weighing scale against another. What's the fewest number of times you'd have to use the scale to find the heavier ball?
What is optimization in c?
main() { int x=10,y=15; x=x++; y=++y; printf("%d %d\n",x,y); } output??
19 Answers EBS, Ramco, Sangwin, TCS,
What is the function of multilevel pointer in c?
What should malloc() do?
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
differentiate built-in functions and user – defined functions.
what is the program to display your name in any color?
the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b
What is structure in c language?
int i; i=2; i++; if(i=4) { printf(i=4); } else { printf(i=3); } output of the program ?
Given an array of characters which form a sentence of words, give an efficient algorithm to reverse the order of the words (not characters) in it?