Jump to content
xisto Community

livepcportal

Members
  • Content Count

    218
  • Joined

  • Last visited

Everything posted by livepcportal

  1. If you are looking for a free web host then you can join http://110mb.com/404.php It is very good host with a lot of features. Here is the complete list of features which 110mb provides to its all users
  2. EDGE is an acronym for Enhanced Data rates for GSM Evolution. It is also known as EGPRS or Enhanced GPRS. It is a digital mobile phone technology which enables faster and more reliable data transfer. Although this technology is a part of the 3G definition, it is classified as a 2.75G technology. EDGE is compatible with GSM networks. EDGE benefits especially for users who work with data applications requiring high speed, like multimedia programs.
  3. After doing a lot of research I finally found top 3 free online gaming sites 1. http://www.miniclip.com/games/en/ Miniclip gives wide variety of games ranging from Racing to Brain Training games. You can also challenge other players who are online to a game but only after you have created a profile on the site called a "MiniMe". 2.http://www.freeonlinegames.com/ This website have got some of the best free online games. The best part is you don't have to register to play a game. Just click on a game that you like and you're ready to rock. Apart from playing solo, you can also test your gaming skills by competing with people from around globe. 3.http://allthegames.net/ This amazing website gives you access to numerous games that are grouped into 13 categories. The website has also revived old classic games like Super Mario, and Sonic the Hedgehog. The games on this website neither require you to install any additional software nor ask you to register to the website. If you know any other online gaming website which you have came across then tell us about it and also tell us why you think it is best. So, create your own list of best online gaming websites and make people aware of them. See you again
  4. What is a string? A string is a group of characters ended with null character. It is also known as array of characters. Declaration char name_of_the_string; where name of the string must be valid identifier & size must be an integer constant Most useful functions available inside string.h header file strcpy() This function copies one string into another string. Format: strcpy(s1,s2) where s1 is a string variable and s2 is a string variable or string constant. e.g. strcpy("Hello",s1); will copy Hello to string variable s1. strlen() It counts the number of characters including null in the given string. e.g. cout<<strlen("c++"); Output: 4 strcmp() Format: strcmp(s1,s2); This function will return 0 if two strings are equal, -1 if 1st string is smaller than 2nd and 1 if 1st string is greater than 2nd This function is case sensitive & compares two strings by ASCII value of the characters. strrev() It prints given string into its reverse order e.g. cout<<strrev("abc"); Output: cba strcat() This function add two strings. Format: strcat(s1,s2) e.g. cout<<strcat("abc","xyz"); Output:abcxyz strupr() It converts given string in uppercase. Format: strupr(s1) where s1 can be a string variable or a string constant. strlwr() It converts given string in lowercase. Format is same as that of strupr(). If you liked this post please rate it and if not then tell me why, your feedback will help me in boosting up my confidence so that I can write more useful post in the future.
  5. the most simple program i can think of is given below with its part by part explanation //in c++ we give single line comments like this #include<iostream.h>//here we have included header file for using cout statement #include<conio.h>//for using clrscr() and getch() void main { clrscr(); cout<<"Welcome to the world of c++"; getch(); } Output of this program would be like this Welcome to the world of c++ Note: if you are not using conio.h and getch() you will not be able to see output on your monitor this is it a c++ program could not be more simple than this if you have any type of query regarding this u can send an email to chetanchauhan1991@gmail.com Thank u for reading
×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.