Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~644 People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Tags
c x 7
.net x 1

2 Posted Topics

Member Avatar for absolute20

Hi, I installed httpd-2.2.13 on my linux system. I want to run "simple .asp" file simple .asp <html> <body> <% Response.Write("ASP") %> </body> </html> Can any body help me.

Member Avatar for Inside
0
268
Member Avatar for tatyakadam

Simple1.c ------------------------------------ #include<stdio.h> int f1(int x, int y) { printf("%d %d", x, y); return x+y; } ----------------------------------- Simple2.c ------------------------------------ #include<stdio.h> extern int f1(int x,int y); void main() { printf(" %d\n", f1(5,6)); } ----------------------------------- I was trying complie Simple1.c file then Simple2.c on Turbo C/C++ Compiler (Windows Xp). It showing following …

Member Avatar for Dream2code
0
101

The End.