Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
4
Posts with Downvotes
1
Downvoting Members
4
1 Commented Post
0 Endorsements
Ranked #72.7K
~297 People Reached
Favorite Tags
c x 1
php x 1
Member Avatar for Bazzaah

Hi everyone, I'd be grateful for some help please. My problem is this - I am trying to find a way to pass the content of a db search from one page to another page, if that's clear. Each file opens with [code] session_start(); [/code] This is the database search: …

Member Avatar for Bazzaah
0
120
Member Avatar for rafikul

[code=c] #include<stdio.h> #include<conio.h> void main() { int a[] = {10,20,30,40,50},j,*p; clrscr(); for(j=0;j<5;j++) { printf("%d",*a); a++;/*here compiler error "lvalue required"*/ } p=a; for(j=0;j<5;j++) { printf("%d",*p); p++; } getch(); } [/code] i used turbo c++ compiler.and save this programme as abc.c why this type of errors occur?

Member Avatar for peter_budo
0
177