Dot Net Code (114)
Visual Basic Code (11)
Programming Code AllOther (62) int aaa() {printf(“Hi”);} int bbb(){printf(“hello”);} iny ccc(){printf(“bye”);} main() { int ( * ptr[3]) (); ptr[0] = aaa; ptr[1] = bbb; ptr[2] =ccc; ptr[2](); }
1 9324main() { char str1[] = {‘s’,’o’,’m’,’e’}; char str2[] = {‘s’,’o’,’m’,’e’,’\0’}; while (strcmp(str1,str2)) printf(“Strings are not equal\n”); }
1 6317void main() { int *mptr, *cptr; mptr = (int*)malloc(sizeof(int)); printf(“%d”,*mptr); int *cptr = (int*)calloc(sizeof(int),1); printf(“%d”,*cptr); }
1 6755main() { float i=1.5; switch(i) { case 1: printf("1"); case 2: printf("2"); default : printf("0"); } }
2 13722
What is the functionality of GetWindowTextLength?
What is the coding about how to recognize color in fuzzy logic using Matlab R2009b?
write a program that can LOCATE and INSERT elements in array using c++ programming languages.
plz send code for Ecorps in j2ee frontend:J2EE Backend: DB2 Express
Write a program to model an exploding firecracker in the xy plane using a particle system
Design a timer circuit using VHDL which has the following: input : start_timer(ST) output: long_time(LT) short_time(ST) when the timer is triggered by the ST(either 0 or 1) signal the timer should generate two timing signals accordingly.While the long time is going ON the other should be OFF and vice versa.
What is the functionality of SetForegroundWindow?
Code for Presenting Parent/Child Data in a Data Grid Row?
can any body give me answer to this question please? please give me code in cl with the folling specifications. 1.Accept 2 parameters-date and date type 2.If date type is J then convert date to *MDY format 3.If date type is M convert date to *JUL format 4. Send a program message with the value of converted date? Please give me the answer.Because im practicing in my house.Im taking trining on AS/400.
#include
i don't know about working of nested for loop can any one help me
create a .dll component operation and use created component in another project. required methods events and properties. connect, add,search,data report
write a program that creates a sequenced array of numbers starting with 1 and alternately add 1 and then 2 to create the text number in the series , as shown below. 1,33,4,6,7,9,............147,148,150 Then , using a binary search , searches the array 100 times using randomly generated targets in the range of 1 to 150
write a program that reverses the input number of n.Formulate an equation to come up with the answer.
How can you print an address of a variable?