answersLogoWhite

0

You don't. Trigraph sequences are outdated by thirty years.

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

Write a c program to solve cos series?

Please do.


What is syntax in c?

syntax is the way you write your code in it defines the meaning of keywords & how to write


What is template in C?

C does not support templates. Templates are supported by C++ and make it possible to write generic code.


How do you convert fibonicco series into php coding from c?

Get the code from c. Instead of c convetions insert php conventions.


Write c code for extened euclid algorithm?

This is a request, not a question.


How can we write a code after main closed in c language?

Register the function(s) containing the code with atexit.


Did C. S. Lewis write all the books in the Narnia series?

of course he did


Write a c program Fibonacci series using for loop in java?

Exactly what do you mean by 'C program in Java'


Write a C program to print the following series 112 122 . 1n2?

write a program to print the series 1/12+1/22+.........+1/n2 ?


How do you write a C program in visual studio 2012?

Start a new Visual C++ project then begin writing your C code.


Can you write a C program Without turbo C IDE?

Yes you can write a C program without using turbo C IDE. All you need is a text editor like notepad where you can write your codes and after writting them save the file with .c extension. But for compilling and running the code you will be needing turbo C IDE.


Can you merge c and perl?

Yes, C and Perl can be made to talk together quite well. XS (http://en.wikipedia.org/wiki/XS_(Perl)) is the most widely used method for doing this - it allows you to write binding to C or C++ code so it can be called as a perl subroutine. Inline::C (http://search.cpan.org/~ingy/Inline-0.44/C/C.pod) is another method - it allows you to write C code inside Perl code and generates the necessary XS automatically. If you want to call perl code from C, you can link against libperl.