Programming Code (840)
Scripts_Markup Code (257) main() { char s[ ]="man"; int i; for(i=0;s[ i ];i++) printf("\n%c%c%c%c",s[ i ],*(s+i),*(i+s),i[s]); }
DCE,
1 17265main() { float me = 1.1; double you = 1.1; if(me==you) printf("I love U"); else printf("I hate U"); }
1 9593main() { int c[ ]={2.8,3.4,4,6.7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf(" %d ",*c); ++q; } for(j=0;j<5;j++){ printf(" %d ",*p); ++p; } }
1 33016main() { int i=-1,j=-1,k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d %d %d %d %d",i,j,k,l,m); }
1 25520main() { int i=3; switch(i) { default:printf("zero"); case 1: printf("one"); break; case 2:printf("two"); break; case 3: printf("three"); break; } }
1 15263main() { char string[]="Hello World"; display(string); } void display(char *string) { printf("%s",string); }
2 11493#include
How to palindrom string in c language?
Write a program that print in screen a tree with its height taken from user by entering number of 4 digits and find the odd numbers then calculate the sum of odd numbers so he get the height of tree?
Write a program that will convert an integer pointer to an integer and vice-versa.
Code for using a Hot Key in an ActiveX Control?
What is XML DOM Document?
write a program that reads a series of strings and prints only those strings begging with letter "b"
Create a Menu that can be activated while clicking on Right Mouse button
What is a StAX Parser?
Write a python program to check if a number is a strong number?
write a program for area of circumference of shapes
How to use Client-side Script to Focus Controls in ASP.NET?
How to Link Different Data Sources Together?
How to export 2 datatables of a single dataset to 2 different worksheets of a single MSExcel file ?
can everyone explain this code Private Sub DrawRect(rectSource As RECT, lngColour As Long) Line (rectSource.Left, rectSource.Top)-(rectSource.Left, rectSource.Bottom), lngColour Line (rectSource.Left, rectSource.Top)- (rectSource.Right, rectSource.Top), lngColour Line (rectSource.Right, rectSource.Bottom)- (rectSource.Right, rectSource.Top), lngColour Line (rectSource.Right, rectSource.Bottom)- (rectSource.Left, rectSource.Bottom), lngColour End Sub
What is the functionality of GetWindow?