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
~628 People Reached
About Me

Software Engg.

Favorite Tags

3 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
264
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
97
Member Avatar for DeathEvil

Simple1.c ------------------------------------ #include int f1(int x, int y) { printf("%d %d", x, y); return x+y; } ----------------------------------- Simple2.c ------------------------------------ #include 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 iamthwee
0
267

The End.