write a C program to print the program itself ?!

Answer Posted / sriram

#include<iostream.h>
#include<conio.hg>
int main()
{
clrscr();
printf(" \t hi this is sriram \t \n");
getch();
return 0;
}

Is This Answer Correct ?    4 Yes 93 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the scope of static variables in c language?

633


Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?

1602


What are void pointers in c?

576


Is linux written in c?

603


How can I trap or ignore keyboard interrupts like control-c?

620






Write a program which returns the first non repetitive character in the string?

606


What is the use of getch ()?

640


What are the different types of data structures in c?

610


Is stack a keyword in c?

640


what is the diffrenet bettwen HTTP and internet protocol

1396


Differentiate between functions getch() and getche().

627


Explain what is operator promotion?

639


What is the difference between declaring a variable by constant keyword and #define ing that variable?

2705


GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA

1433


Why is %d used in c?

569