printf(), scanf() these are
a) library functions
b) userdefined functions
c) system functions
d) they are not functions
No Answer is Posted For this Question
Be the First to Post Answer
can we print any string in c language without using semicolon(;)(terminator) in whole program.
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
what is difference between overriding and overloading?
Explain how can you check to see whether a symbol is defined?
write a program that print itself even if the source file is deleted?
Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 5 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.
What are Storage Classes in C ?
32 Answers CTS, HP, IBM, Maharaja Whiteline, Tamil Nadu Open University TNOU, TATA, TCS, Wipro,
What are header files why are they important?
what is the output of the program and explain why?? #include<stdio.h> void main ( ) { int k=4,j=0: switch (k) { case 3; j=300; case 4: j=400: case 5: j=500; } printf (ā%d\nā,j); }
Why functions are used in c?
What is the difference between abs() and fabs() functions?
write a program to copy the string using switch case?