Dot Net Code (114)
Visual Basic Code (11)
Programming Code AllOther (62) Predict the Output: int main() { int *p=(int *)2000; scanf("%d",2000); printf("%d",*p); return 0; } if input is 20 ,what will be print
2 6207I have string str="Arts And Props" now i want to replace space in string with null. means i want result as str="ArtsAndProps"
1 4055Here's the programm code: int magic(int a, int b) { return b == 0 ? a : magic(b, a % b); } int main() { int a, b; scanf("%d%d", &a, &b); printf("%d\n", magic(a, b)); return 0; } on input stream we have integers 4, 45 What's the output integer? How many times will be initiated "magic" function?
1 4098given integer number,write a program that displays the number as follows: First line :all digits second line : all except the first digit . . . . Last line : the last digit
8 32588Write a function which accepts a sentence as input parameter.Each word in that sentence is to be reversed. Space should be there between each words.Return the sentence with reversed words to main function and produce the required output. for eg:- i/p: jack jill jung kill o/p: kcaj llij gnuj llik
1 7553
How to Link Different Data Sources Together?
hai, i want to know how the connectionpool manager work in the java or netbeans.Anybody having the exact code plz give to me i have no idea about that so help me plz
Write a routine to implement the polymarker function
write a program to perform generic sort in arrays?
How to get Dynamically Linked Comboboxes Set?
how to write a program that opens a file and display in reverse order?
Performance Algorithm A performs 10n2 basic operations and algorithm B performs 300 lg n basic operations. For what value of n does algorithm B start to show its better performance?
I am trying to pass the string firstName from a Servlet called SampleServet. I am running this on eclipse and it tells me that "the value for annotation attribute must be a constant expression. I don't understand why it is giving me this error. @PersonAnnotation(name = SampleServlet.firstName) public class AnnotationClass{
how to test the orientation of the layout in android.to note any changes in the ui design when change orientation
write a program that can LOCATE and INSERT elements in array using c++ programming languages.
i am doing my final year project about programming use verilog ,i am new about it so got problem,i want to record the readings of a waveform every 2us use the verilog code ,every ten readings i need to add them together after that i need to compare this series of number to get which one is the biggest , right now i don't know how to use code to store the readings every 2us on a waveform ,pls help me thanks a lot .
What is the functionality of SendMessage?
Given a spherical surface, write bump-mapping procedure to generate the bumpy surface of an orange
write a c program to input initial & final time in the format hh:mm and find the time intervel between them? Ex inputs are initial 06:30 final 00:05 and 23:22 final 22.30
In java, why do we set thread priority, when we know that there is no guarantee by which a thread should be execute?