answersLogoWhite

0

within inverted commas using two backslashes consequently .. we will print the backslash.

ex:

printf("//n it will gives output");

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

How do you write multiplication table program in php?

// example of 1..12x12 table for($i = 1; $i <= 12; $i++) { for($j = 1; $j <= 12; $j++) { print ($i * $j) ." "; } print "\n"; }


Write a java script program to print first ten odd natural numbers in C?

Q.1 Write a program to print first ten odd natural numbers. Q.2 Write a program to input a number. Print their table. Q.3 Write a function to print a factorial value.


How do you print an HTML table using PHP?

It is really simple to print an HTML table in PHP, all you have to do is the following: <?php print "<table>"; print "<tr>"; print "<td>hello</td>"; print "</tr>"; print "</table>"; ?>


Construct a truth table for p and q if and only if not q?

Construct a truth table for ~q (p q)


When you construct and use a table to solve a problem?

When you construct and use a table to solve a problem, you are using a numerical approach.


Print a table of 2 in vb?

print table of 2 in vb


Write a qbasic program to accept a no and print it multiple table?

Cls print the multiples tables of 1 to 5 for x=1 to 5 for y=1 to 10 print x;"*";y;"=";x*y next y print print next x end


How do you construct data table and the probability density?

== ==


What trends are there in modern table cloths?

The trends in modern table cloths are chevron print, arrow print, hand printed table runner, diamond print, fold or unfold table cloths and many more.


What do you meant by table in HTML?

Table is a physical construct that has rows and columns. It similar in many forms to a database.


How can you print a table of 5 in java by getting values from user?

look at the print


How to write C multiplication table?

/****************************************** * C Program to print MultiplicationTable * * Author of the Program: M.JAYAKUMAR..* * Date 23 Nov 2006 * * ***************************************/ #include<stdio.h> main() { int i, p=1, table[10]; /* define integres and array */ /* *************************** * Output Formating Begins * ***************************/ for(i=0;i<61;i++) printf("#"); printf("\n# Program to print Multiplication table of any number"); printf("\n# NOTE: To exit type 0 \n"); for(i=0;i<61;i++) printf("#"); /* *************************** * Output Formating ENDS * ***************************/ while(p != 0) { printf("\nWhich table "); scanf("%d",&p); /* takes input from input */ for(i=0;i<10;i++) /* Fills the array */ { if(p==0) /* Stratagy to exit the program Benins */ { printf("Exiting\n"); break; } /* Stratagy to exit the program ends */ table[i]=i+1; /* Fills the array with numbers 1 - 10 */ printf("%2d x %2d = %2d\n", p, table[i], p * table[i]); } } }