Pages
Home
Image Gallery
skip to main
|
skip to sidebar
FullonStudy
The Site Contain C & C++ Programs
Facebook
Twitter
MySpace
Stumble
Reddit
Delicious
More...
Write in inverted comma
Monday, 29 August 2011
#include<stdio.h>
#include<conio.h>void main()
{
clrscr();
printf("\"Hey! i m learning C \"");
getch();
}
OUTPUT:
"Hey! i m learning C "
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
Labels
2-D Array
(1)
Array
(3)
Back Slash
(6)
C
(74)
C BASIC
(14)
Continue Loop
(1)
Data Type
(2)
Decision Making
(10)
For Loop
(5)
Function
(11)
Function With Parameter and Return Type
(2)
Function with return But no argument
(1)
If-Else
(9)
Looping
(10)
NO return and No arguments
(3)
No return Type But Argument
(2)
Operator
(13)
Operator Bit wise
(2)
Operator Comma
(1)
Operator Increement Decreement
(3)
Operator Logical
(1)
Operator Arithmatic
(1)
Operator Assignment
(1)
Operator Relational
(2)
Operator Size
(2)
Pointer
(8)
Simple Programs
(6)
String
(6)
Structure
(7)
Switch Case
(1)
Union
(2)
While loop
(4)
Popular Posts
Number is Even or Odd
#include<stdio.h> #include<conio.h> void main() { int a; clrscr(); printf("enter the value of a "); scanf(...
Value & Address of a Variable
#include<stdio.h> #include<conio.h> void main() { int a; float b; a=10; b=20.34; printf("Address of a=%u\n",...
Simple Structure
#include<stdio.h> #include<conio.h> struct person { char name[10]; int age; }; void main() { struct person p; clrs...
Printing all odd number between 1&30
#include<stdio.h> #include<conio.h> void main() { int t=1; clrscr(); while(t<30) { if(t%2==1) printf(" ...
Array and Pointer and Function
#include<stdio.h> #include<conio.h> void main() { int a[]={1,2,3,4,5}; void show(int **,int); int *p=a; clrscr(); show(...
Pre Increement
#include<stdio.h> #include<conio.h> void main() { int x,y; clrscr(); x=10; y=++x; printf("x=%d\ny=%d",x,y); g...
Maximum of two Number
#include<stdio.h> #include<conio.h> void main() { int a,b; clrscr(); printf("enter the value of a "); scanf(...
Print the statement using Function
#include<stdio.h> #include<conio.h> void main() { void show(void); clrscr(); show(); getch(); } void show(void) { p...
Array of Structure
#include<stdio.h> #include<conio.h> void main() { typedef struct { char sname[10]; int rollno; c...
Addtion of Two Variable in C
#include<stdio.h> #include<conio.h> void main() { int a,b,c; clrscr(); printf("enter the value of a&b...
Archives
▼
2011
(74)
►
September
(44)
▼
August
(30)
Printing all odd number between 1&30
Number is Even or Odd
Maximum of three Number
Maximum of three Number (nested if-else)
Maximum of two Number
simple if-else program
Simple if program
Printing number 1 to10
For Loop Design 5
For Loop Design 4
For Loop Design 3
For Loop Design 2
For Loop Design 1
TO CHECK GIVEN CHARACTER IS VOWEL OR NOT USING SWI...
Leap Year
Case Conversion
Backspace
Write in inverted comma
Sound Magic
Carriage Return
Tab between two Words
Enter in New line
Printing of ASCII value of charactor
Simple Data type Program
Swaping with Two Variable
Swaping with Three Variable
Average of Two Number
Area OF Square
Addtion of Two Variable in C
Simple Hello Program in C
Blogger news
Blogroll
Enter your email address:
Delivered by
FeedBurner
Total Pageviews
About Me
T K Garg
View my complete profile
Followers
Most Reading
Number is Even or Odd
#include<stdio.h> #include<conio.h> void main() { int a; clrscr(); printf("enter the value of a "); scanf(...
Value & Address of a Variable
#include<stdio.h> #include<conio.h> void main() { int a; float b; a=10; b=20.34; printf("Address of a=%u\n",...
Simple Structure
#include<stdio.h> #include<conio.h> struct person { char name[10]; int age; }; void main() { struct person p; clrs...
Printing all odd number between 1&30
#include<stdio.h> #include<conio.h> void main() { int t=1; clrscr(); while(t<30) { if(t%2==1) printf(" ...
Array and Pointer and Function
#include<stdio.h> #include<conio.h> void main() { int a[]={1,2,3,4,5}; void show(int **,int); int *p=a; clrscr(); show(...
Pre Increement
#include<stdio.h> #include<conio.h> void main() { int x,y; clrscr(); x=10; y=++x; printf("x=%d\ny=%d",x,y); g...
Maximum of two Number
#include<stdio.h> #include<conio.h> void main() { int a,b; clrscr(); printf("enter the value of a "); scanf(...
Print the statement using Function
#include<stdio.h> #include<conio.h> void main() { void show(void); clrscr(); show(); getch(); } void show(void) { p...
Array of Structure
#include<stdio.h> #include<conio.h> void main() { typedef struct { char sname[10]; int rollno; c...
Addtion of Two Variable in C
#include<stdio.h> #include<conio.h> void main() { int a,b,c; clrscr(); printf("enter the value of a&b...
Copyright © .
FullonStudy
. Some Rights Reserved
Template Design by
Herdiansyah Hamzah
. Published by
Borneo Templates
No comments:
Post a Comment