Dot Net Code (114)
Visual Basic Code (11)
Programming Code AllOther (62) # include
#include
int i; main(){ int t; for ( t=4;scanf("%d",&i)-t;printf("%d\n",i)) printf("%d--",t--); } // If the inputs are 0,1,2,3 find the o/p
2 12479In the following pgm add a stmt in the function fun such that the address of 'a' gets stored in 'j'. main(){ int * j; void fun(int **); fun(&j); } void fun(int **k) { int a =0; /* add a stmt here*/ }
1 4160What are the following notations of defining functions known as? i. int abc(int a,float b) { /* some code */ } ii. int abc(a,b) int a; float b; { /* some code*/ }
1 5658main(){ char a[100]; a[0]='a';a[1]]='b';a[2]='c';a[4]='d'; abc(a); } abc(char a[]){ a++; printf("%c",*a); a++; printf("%c",*a); }
2 7508func(a,b) int a,b; { return( a= (a==b) ); } main() { int process(),func(); printf("The value of process is %d !\n ",process(func,3,6)); } process(pf,val1,val2) int (*pf) (); int val1,val2; { return((*pf) (val1,val2)); }
1 10477void main() { int k=ret(sizeof(float)); printf("\n here value is %d",++k); } int ret(int ret) { ret += 2.5; return(ret); }
1 12216
What is full form of PEPSI
an on-line examination application using html jsp servlet and jdbc. including session management and cookies
Write a (n) algorithm that sorts n distinct integers, ranging in size between 1 and kn inclusive, where k is a constant positive integer. (Hint: Use a kn-element array.)
write a function that reverse the elements of an array in place.The function must accept only one pointer value and return void.
How to Get File Extension?
Design an implement of the inputs functions for event mode
Write a Program to find the reverse of a given number.
How to Link Different Data Sources Together?
Code for Document Validation in XML.NET?
Code for Presenting Parent/Child Data in a Data Grid Row?
What is the difference between proc means and proc tabulate ? explain with a simple example when you have to use means or tabulate?
find level of following tree (state, parent) " J,D I,D H,C E,B F,B G,C B,A D,A C,A A,& K,E L,E L,F M,F N,G O,H P,I P,H Q,I R,J S,K U,P T,L
could you please send the program code for multiplying sparse matrix in c????
How to update and insert from datagridview at run time in excel database?
Write a function which accepts list of nouns as input parameter and return the same list in the plural form. Conditions: i) if last letter is r then append s ii) if word ends with y then replace it by ies iii) call this function in main() and produce the required output. for eg:- if chair is input it should give chairs as output.