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
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.
Why is structure padding done in c?
I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.
write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);
Define and explain about ! Operator?
What are high level languages like C and FORTRAN also known as?
Is int a keyword in c?
What is getch() function?
How do we make a global variable accessible across files? Explain the extern keyword?
Suppose we have a table name EMP as below. We want to perform a operation in which, I want to change name ‘SMITH’ from as ‘SMITH JAIN’. Also I want to change the name of the column from ENAME to E_NAME. EMPNO ENAME JOB MGR HIREDATE SAL 7369 SMITH Coder 7902 17-DEC-80 800 7499 ALLEN SALESMAN 7698 20-FEB-81 1600 7521 WARD SALESMAN 7698 22-FEB-81 1250
What are global variables and explain how do you declare them?
What is indirection?
What is "Hungarian Notation"?
Explain how do I determine whether a character is numeric, alphabetic, and so on?