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 9225main() { char str1[] = {‘s’,’o’,’m’,’e’}; char str2[] = {‘s’,’o’,’m’,’e’,’\0’}; while (strcmp(str1,str2)) printf(“Strings are not equal\n”); }
1 6224void main() { int *mptr, *cptr; mptr = (int*)malloc(sizeof(int)); printf(“%d”,*mptr); int *cptr = (int*)calloc(sizeof(int),1); printf(“%d”,*cptr); }
1 6685main() { float i=1.5; switch(i) { case 1: printf("1"); case 2: printf("2"); default : printf("0"); } }
2 13616
What is data _null_? ,Explain with code when u need to use it in data step programming ?
Code for IP Address Comparison and Conversion in C#?
can you please write a program for deadlock that can detect deadlock and to prevent deadlock.
In LSMW , what does the following error mean and how to rectify it : Incorrect interface data for set 78 in method C . This error is occuring in idoc processing step of LSMW.
write a program in java to solve a system of n-variabled simultaneous equations using the guassian elimination method. let the maximum possible value of n be 100. run the program using hypothetical values for a set of 10- variables simultaneous equations. print out the program, the input equation and the results generated by the program.
How can you relate the function with the structure? Explain with an appropriate example.
Write a Program in 'C' To Insert a Unique Number Only. (Hint: Just Like a Primary Key Numbers In Database.) Please Some One Suggest Me a Better Solution for This question ??
How to Split Strings with Regex in Managed C++ Applications?
Write a Program to find the number of words in a sentence.
How we use ajax in asp.net through javaScript. Please givee me an example.
Code for Small C++ Class to Transform Any Static Control into a Hyperlink Control?
can any one give me code to keyed a flat file and used chain in RPGLE to search any item
How to Check if Folder Exists?
write a function that allocates memory for a single data type passed as a parameter.the function uses the new operator and return a pointer to the allocated memory.the function must catch and handle any exception during allocation
write a java program to create a Frame with three scrolls, change the back ground color of the frame using functions with values of scrolls.