Dot Net Code (114)
Visual Basic Code (11)
Programming Code AllOther (62) void main() { unsigned giveit=-1; int gotit; printf("%u ",++giveit); printf("%u \n",gotit=--giveit); }
1 9933void main() { int i; char a[]="\0"; if(printf("%s\n",a)) printf("Ok here \n"); else printf("Forget it\n"); }
3 17324void main() { static int i=i++, j=j++, k=k++; printf(āi = %d j = %d k = %dā, i, j, k); }
3 16407main() { float f=5,g=10; enum{i=10,j=20,k=50}; printf("%d\n",++k); printf("%f\n",f<<2); printf("%lf\n",f%g); printf("%lf\n",fmod(f,g)); }
1 8270main() { int i=10; void pascal f(int,int,int); f(i++,i++,i++); printf(" %d",i); } void pascal f(integer :i,integer:j,integer :k) { write(i,j,k); }
1 9136
Design an implement of the inputs functions for event mode
Write a Program to find whether the given number is a Armstrong number.
write a program using 2 D that searches a number and display the number of items 12 inputs values input 15,20, 13, 30, 38, 40,16, 18, 20 ,18 ,20 enter no. to search : 20
write a program that reverses the input number of n.Formulate an equation to come up with the answer.
What is the functionality of FindWindow?
Write a Program to find the sum of digits of a given number until the sum becomes a single digit.
find out the list of users who have access to all t-codes starts with 'SU'? thanks in advance all.
What is the difference between proc means and proc tabulate ? explain with a simple example when you have to use means or tabulate?
how to create a 3x3 two dimensional array that will give you the sums on the left and bottom columns
output for printf("printf");
create a stucture student containing field for roll no,class,year and marks.create 10 student annd store them in a file
Hello Sir, Thanks for the Solution but, can you pls. Explain the coding for the Static Function & static variable from the below coding....waiting for Ans. class fact { public static void Main() { fact f=new fact(); int x=1; //Declaration of x as 1 int k=Convert.ToInt32(Console.ReadLine()); for(int i=1;i<=k;i++) { x= x *i; } System.Console.WriteLine(x); } }
How to get Filename from Path?
Write code to add functions, which would work as get and put properties of a class?
write a program to perform generic sort in arrays?