answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What is the function of print statement?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you write a program using the gotoxy statement and print function to display letters of the alphabet on the computer screen?

There is no gotoxy statement in C.


What is a function statement?

A function statement is a block where the function is declared and defined.


Without printf statement semicolon print the statement?

int main (void) { if(printf("Print whatever you want")) { } }


What is functional statement?

A function statement is a block where the function is declared and defined.


How can print both statement of if and else?

Simply print the whole source-code.


Write a C plus plus function that print a triangle of stars?

Write a function that print a triangle of stars.


How do you print a statement in c without using any function like printf putc puts etc?

The only way i see is to use : using the right file descriptor


What function in MS Excel which checks the logical condition of a statement?

IF function


The arguments in an IF function are?

IF, in C and C++, is not a function - it is a statement. There are two parameters... if (expression) statement; The expression is evaluated. If it has logical result true, or arithmentic result not zero, the statement is executed; if not, the statement is not executed. The statement can be a single statement, in which it is terminated with a semi-colon, or it can be a block of statements, in which it is surrounded by braces.


In C programming language what are the so called functions statement statement block function block and expressions?

Statements are composed from expressions. A semi-colon turns an expression into a statement. A function is not a statement it is a type definition. A statement block is a compound statement, one or more statements delimited by braces, {}. A function block is the body of a function. The body must be enclosed in braces, {}.


Is it possible to print both if statement and else statement?

Yes int main (void) { puts ("if statement"); puts ("else statement"); return 0; }


What are the example of turbo c with using scan and print function?

#include<stdio.h> Void main() { int a,b; printf("Enter a Number: "); // for print function as an out-put scanf("%d",&a); //for scan function as in input /* Here we can use print function once again as: */ a=a++; printf("%d",a); }