answersLogoWhite

0

printf , scanf , getchar, putchar, getc are the other operators in C except gets and puts..

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

Built-in functions in C?

You can have #include after Stdio.h ...it has so many built in mathematical functions like CIRCULAR FUNCTIONS, ABSOLUTE VALUE and more..Sadly, built-in functions and library functions are different things... there are no built-in functions in C (except for sizeof, which isn't an actual function).


What is the user defined function section in C language?

There are no 'sections' in C source, you can define functions anywhere, except inside another function or variable/type definition.


Write a program to check a C?

int main (void) { if ('C' == 'C') puts ("Okay"); else puts ('Oh, gosh"); return 0; }


How the function is called in c?

That's up to you, except for the main function, the name of which has to be main.Or, if you want to know how to call a function, it's simply by its name, followed by an argument list, eg:int main (void){puts ("I have just called function puts");return 0;}


Can there be friend functions in c plus plus?

Yes, there can be friend functions in C++.


What type of extinguisher puts out electrical?

C


In c plus plus are local declarations visible to the function in a program?

If you declare a variable inside of any fuction (except main) it will not be available to other functions.


What is the rule you after e except after c?

it's I before E except after C .


What is the task of gets and puts in c plus plus?

The library function gets() reads a string from stdin and removes any trailing newline. The library function puts() writes a string to stdout and adds a trailing newline. The original intent of these functions was to provide convenient ways of reading and writing whole lines, rather than doing character I/O. Both functions are deprecated and should not be used in new programs. They are retained for compatibility, as they are part of the ANSI C Standard Library. The gets() function, in particular, is notorious for its potential for abuse; since it has no way of knowing the capacity of the buffer in which it is storing the string, it cannot prevent buffer overruns. By overrunning the buffer, an upstream program can tamper with the memory contents of the program that uses gets(). Historically, this has led to system and application program vulnerabilities that have been exploited by many malicious programmers. Virtually all calls to gets() have been removed from production software over the last 20 years.


What are the in-built function in c plus plus?

C++ built-in functions are those functions that are provided for you as part of the language itself, and includes all of the C standard library functions (all of which were inherited from C) and is expanded upon by the C++ standard template library. C++ implementors may provide additional functions that are platform-specific, however these are not considered built-in functions becuase C++ is a cross-platform language. These are best described as 3rd party functions. The functions you yourself write are known as user-defined functions.


What is the importance of using functions in a c program?

C programs do not function without functions.


What is the need and uses of functions in c?

In the C language, functions are what other languages sometimes call procedures or subroutines. Unlike some languages, the C language makes no distinction between functions which return a result and those that don't, except that the latter are declared with the "void" return type (indicating that there is no direct result). Functions are used to provide functionality that is then available to multiple callers, thus promote efficient coding by implementing a function once, but using it many times. Functions also promote structured code layout.