Today's Question:  What does your personal desk look like?        GIVE A SHOUT

 ALL


  Let your page be alive

With development of Internet, Web pages lie everywhere. How to design a visually attractive web product is becoming a major concern of designers, A complete webpage consists of the combination of points, lines and layers. If you want to let your page design be alive, you should put your efforts on below 4 aspects.1. Flexible font useIn a webpage, texts are the major information carrier and are what users care mostly about. It's the main element to convey messages to readers. The font size, color,style or even line height will directly affect the visual effect.The above page is very concise, it...

2,869 0       UI DESIGN WHITE SPACE GEOMETRIC GRAPH


  7 big mistakes that make your layout a disaster

Even though the web design field has become a real industry, building a website is part art, part science. The design of a website may attract people but it may also make them run away, it depends on the work of the web designer. The experience, the talent and the capacity of endeavor are the greatest tools of a web designer, a good layout is based on all of these and, besides that, it is a very time consuming activity.Making a good layout is difficult and judging its value is subjective, a design could be liked by me, but disregarded by others. In spite of that, there are few things that are ...

2,741 0       WEB DESIGN MISTAKES CONTENT WHITE SPACE


  Read white space with scanf()

Usually, when we want to enter string with white spaces in C, we need to call gets() or fgets(0 method. We usually will not use scanf(0 or fscanf() because they cannot accept white spaces when scan user inputs. But when we specify the format in scanf() function, we may read strings with white space. the code section below illustrate this:#include <stdio.h> int main(int argc,char **argv){       char name[30];    fprintf(stdout,"Please enter the name : \n");fscanf(stdin,"%[^\n]s",name); fprintf(stdout,"%s\n",name); return 0;} On a...

19,847 0       C SCANF WHITE SPACE STRING FORMAT