Hey Friends.
CAN ANYBODY TELL ME THAT IS THERE ANY QUERY TO PARTITION THE DATABSE IN ORACLE 11G
User Profile
Collapse
Profile Sidebar
Collapse
swapnali143
Last Activity: Jul 24 '13, 10:39 AM
Joined: Mar 16 '12
Location:
-
Oracle11 G database partitioning
-
to convert size of mobile to computer screen... you can simply use multiplication as per ratio of mobilescreen size to computer screen size........... -
Dear whodgson
As a fresher to C or CPP language its better and clear for Anirudh to get logic and understand it.....Leave a comment:
-
Ex..
For Date Of Birth
Day : 29
Date : 2
Year :2014
Its invalid date..Leave a comment:
-
Can you provide me code for date validation function and date comparison function??Leave a comment:
-
You Can try this...........
textattr sets text attributes for text-window functions
textbackground selects a new text background color
textcolor selects a new character color in text mode
Declaration:
void textattr(int newattr);
void textbackground( int newcolor);
void textcolor(int newcolor);
These functions work for functions that produce text-mode output directly to...Leave a comment:
-
Textmode() is a function defined in conio.h........ .
Changes screen mode (in text mode)
Declaration: void textmode(int newmode);
Remarks:
textmode selects a specific text mode.
You can give the text mode (the argument
newmode) by using a symbolic constant from the
enumeration type text_modes (defined in
CONIO.H).
If you use these constants, you must include...Leave a comment:
-
NULL is Macro Defined in C....
NULL is used as Constant......
Its used to terminate String...
Things to remember about NULL are.
NULL is NOT EQUAL to 0
and NULL is NOT EQUAL to '\0'Leave a comment:
-
swapnali143 replied to in turbo c output is not clearing even after including #include<conio.h> and clrscr()in Cif clrscr() is not working then try
fflush(stdin)
Syntax for fflush () is
int fflush ( FILE * stream );
use stdin it means standard inputLeave a comment:
-
To check whether given number is prime or not use following code......Code:#include<stdio.h> void main() { int n, c = 2; printf("Enter a number to check if it is prime\n"); scanf("%d",&n); for ( c = 2 ; c <= n - 1 ; c++ ) { if ( n%c == 0 ) { printf("%d is not prime.\n", n); break;Leave a comment:
-
its the program to calucalte area of square
Code:#include<stdio.h> #include<conio.h> void main() { int side,area; printf("Enter side of Square"); scanf("%d",&side"); area=side*side; printf(" \n Area of Square is : %d sq units",area); getch(); }Leave a comment:
-
function return int by default in C..
But if you want to return any other value then you have to specify it in Function ProtypeLeave a comment:
-
We use % operator to get reminder.. and if odd number is divided by 2 we get reminder 1
Algorithm
1 Start
2 Enter max
3 for(i=0;i<mx;i+ +)
if(i%2==1)
printf(i)
end if
end for
4 stop...Code:#include<stdio.h> #include<conio.h> void main() { int max,i; printf("Enter value of max");Leave a comment:
-
Here function to reverse string is strrev()
and u used streev() which is not defined in libraries of c
Syntax of strrev() is
strrev(string);
Correct code is as follows
...Code:#include<stdio.h> #include<string.h> main() { char arr[10]; printf("Enter a string to reverse\n");Leave a comment:
-
for any pointer size is 4 Bytes because.. Pointer is used to store memory address and every memory address in Computer are integer valuse so sizeof((int*a)) is always 4 bytes...Leave a comment:
-
syntax of atoi() is as follow
int atoi ( const char * str );
Because NULL is not Type Safe its giving you segmentation fault
...Code:// Sample program to explain atoi() #include<stdio.h> #include<stdlib.h> int main () { int i; char buffer [256]; printf ("Enter a number: "); fgets (buffer, 256, stdin);Leave a comment:
-
as you are writing int main() that means it returns integer type of value so you need to return any integer value to main()
return(0) means return true or return successfully..
if you use void main() then dont use return(0)
Your program would be as follows
...Code:#include <iostream.h> #include <conio.h> void main () { cout << "Hello World"; getch();Leave a comment:
-
To edit your C program:
From the main menu select File -> New -> Project
In the New Project window:
Under Project types, select Win32 - Win32 Console Application
Name your project, and specify a location for your project directory
Click 'OK', then 'next'
In the Application Wizard:
Select Console application
Select Empty project
Deselect Precompiled...Leave a comment:
-
If you are working with TC then no need of return 0 because default return type of main() is void i.e. it does not return value...
But under Linux platform if you are using gcc then you need to write return 0 because main() returntype is intLeave a comment:
-
No activity results to display
Show More
Leave a comment: