No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
5 Posted Topics
The problem on your laptop might be that your Network Connection is badly configured(either the laptop does not receive an IP address through DHCP from your router), or your router's configuration is messed up. To find out which one : - do an `ipconfig` thing :) in a cmd and …
If I may suggest ... C in a Nutshell from O'Reilly.
first, the declaration and definition of the function anthet should match. [QUOTE=bhallarahul;1596965][CODE]#include<stdio.h> #include<conio.h> void pass(int); void main() { int a=23; int c; clrscr(); pass(a); printf(" %d ",c); getch(); } void pass( i) { //int i; if(i>40) return 1; else return 0; } [/CODE][/QUOTE]
Another tricky fact i found out while learning is determining the max index based on the length of the array and it's type. - might come handy someday : [CODE] for(i=0;i<sizeof(a)/sizeof(*a);i++){ // do stuff here } [/CODE]
so ... i'm kinda new to these STL ... i wanna make a list of lists ... after spending some time to teach myself how to make a list of char I went one step further with a project I have to accomplish ... so the thing is that i …
The End.
Kiss_and