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
What does emoji p mean?
Write a program to reverse a given number in c language?
please help me.. how to write a code of this output?? "Enter range number:"10 1 is an odd number 2 is an even numbers 3 in an odd numbers 4 " to 10" "printing all odd numbers:" 1,3,5,7,9 "printing all even numbers:" 2,4,6,8,10 "sum of all odd numbers:25 "sum of all even numbers:30 using a C Programming ARRAY pleas pleas help.. its my project ..please :(
If 4 digits number is input through the keyboard, Write a program to calculate sum of its 1st & 4th digit.
How can I make it pause before closing the program output window?
Difference between C and Embedded C?
What is the difference between formatted&unformatted i/o functions?
Can we change the value of static variable in c?
Which of the Following will define a type NODE that is a node in a Linked list? A)struct node {NODE*next;int x;};type def struct node NODE; B)typedef struct NODE {struct NODE *next;int x;}; C)typedef struct NODE {NODE *next;int x;}; D)typedef struct {NODE *next;int x;}NODE;
WAP that prints the number from 1 to 100. but for multiplies of three print "XXX" instead of the number and for the multiplies of five print "YYY" . for number which are multiplies of both three and five print "ZZZ"
Explain the red-black trees?
What is #pragma directive?how it is used in the program? what is its advantages and disadvantages?