view the describetion of table in sql
desc student
there is some good c ,java, sql and vb6 programs,Windows tricks, sms shorthand etc
desc student
create table student(stdRollNo number, stdName varchar2(25),
stdClass varchar2(25));
1.Go to start->run.Type regedit.Now go to: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion
\Policies\Explorer
Now restart your computer. So, now when you click on My Computer, no drives will be shown(all gone…).
Now you can save there anything you want to hide. Windows
Explorer cannot display the content of this folder. You can
use these numbers instead of 251: 158, 159, 169, 176 to 224, 226 to 229, 231 to 240, 242 to 245,
247, 249, 252, 254 and 255. For me, only 176, 249, 251 and 254 worked.
just rename it into a normal name. To do so, open MS-DOS, enter the directory, where your folder is placed and type ren followed by a space,
then hold alt and type the number, that you used when you created
your folder. Press space again and then type the new name of your
folder. Press enter.
Eg.: C:\ Games (this is the folder I've on my C drive) I go to dos start->; programs ->; ms-dos dos window will open. C:\ ren games Alt+158 (here we are renaming the games folder using the
Alt key & a three digit number on the numpad (only numpad, it's
important). U need to press the Alt key and the three digit code at a
time. The code can be any three digit less than 255 (in my opinion) u can
try Alt+164, Alt+176 etc. Ur folder is renamed & locked too at the same time Now u won't see the games folder it'll be written in some ascii code Again to open the same go to dos and rename it using the ren command. Eg: C\ ren Alt+158 games
#include<stdio.h> #include<conio.h> main( ) { char ch = 'A' ; putch ( ch ) ; putchar ( ch ) ; fputchar ( ch ) ; putch ( 'Z' ) ; putchar ( 'Z' ) ; fputchar ( 'Z' ) ; getch(); }
#include<stdio.h> #include<conio.h> main( ) { char ch ; printf ( "\nPress any key to continue" ) ; getch( ) ; /* will not echo the character */ printf ( "\nType any character" ) ; ch = getche( ) ; /* will echo the character typed */ printf ( "\nType any character" ) ; getchar( ) ; /* will echo character, must be followed by enter key */ printf ( "\nContinue Y/N" ) ; fgetchar( ) ; /* will echo character, must be followed by enter key */ getch(); }
#include<stdio.h> #include<conio.h> main( ) { int i = 10 ; char ch = 'A' ; float a = 3.14 ; char str[20] ; printf ( "\n%d %c %f", i, ch, a ) ; sprintf ( str, "%d %c %f", i, ch, a ) ; printf ( "\n%s", str ) ; getch(); }
#include<stdio.h> #include<conio.h> main( ) { char ch = 'z' ; int i = 125 ; float a = 12.55 ; char s[ ] = "hello there !" ; printf ( "\n%c %d %f", ch, ch, ch ) ; printf ( "\n%s %d %f", s, s, s ) ; printf ( "\n%c %d %f",i ,i, i ) ; printf ( "\n%f %d\n", a, a ) ; getch(); }
#include<stdio.h> #include<conio.h> main( ) { printf ( "You\tmust\tbe\tcrazy\nto\thate\tthis\tbook" ) ; getch(); }
#include<stdio.h> #include<conio.h> main( ) { char firstname1[ ] = "Sandy" ; char surname1[ ] = "Malya" ; char firstname2[ ] = "AjayKumar" ; char surname2[ ] = "Gurubaxani" ; printf ( "\n%20s%20s", firstname1, surname1 ) ; printf ( "\n%20s%20s", firstname2, surname2 ) ; getch(); }
#include<stdio.h> #include<conio.h> main( ) { int weight = 63 ; printf ( "\nweight is %d kg", weight ) ; printf ( "\nweight is %2d kg", weight ) ; printf ( "\nweight is %4d kg", weight ) ; printf ( "\nweight is %6d kg", weight ) ; printf ( "\nweight is %-6d kg", weight ) ; getch(); }