Programming Code (840)
Scripts_Markup Code (257) main(){ 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 7400func(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 10359void main() { int k=ret(sizeof(float)); printf("\n here value is %d",++k); } int ret(int ret) { ret += 2.5; return(ret); }
1 12106void main() { unsigned giveit=-1; int gotit; printf("%u ",++giveit); printf("%u \n",gotit=--giveit); }
1 9809void main() { int i; char a[]="\0"; if(printf("%s\n",a)) printf("Ok here \n"); else printf("Forget it\n"); }
3 17146
why nlogn is the lower limit of any sort algorithm?
can we pass variable in array to traverse it?
How a web page can communicate with a web server while a user type characters in an input field.
What is the functionality of GetWindowText?
How to access oralce10g data from server to client in LAN?
how to track links visited in google using iframes
Beautiful is for 012345678 9 and a code for similar word containing the same alphabets
Write a program that implements a date class containing day, month and year as data members. Implement assignment operator and copy constructor in this class.
Can you write a program to find the average of numbers in a list in python?
how to create a Custom Scrollbar
How can a procedure fetch data from FTP? I need a general code for this..
What is data _null_? ,Explain with code when u need to use it in data step programming ?
Code for Document Validation in XML.NET?
We need to write the function to check the password entered is correct or not based on the following conditions.. a) It must have atleast one lower case character and one digit. b)It must not have any Upper case characters and any special characters c) length should be b/w 5-12. d) It should not have any same immediate patterns like abcanan1 : not acceptable coz of an an pattern abc11se: not acceptable, coz of pattern 11 123sd123 : acceptable, as not immediate pattern adfasdsdf : not acceptable, as no digits Aasdfasd12: not acceptable, as have uppercase character
3. Program to find the Sum of give series. a. (1)+(1+2)+(1+2+3)+(1+2+3+4)+……………………………….. b. 1/1+1/9+1/25+1/49+……………...