FORMATTED INPUT/OUTPUT functions are
a) scanf() and printf()
b) gets() and puts()
c) getchar() and putchar()
d) all the above
No Answer is Posted For this Question
Be the First to Post Answer
write a program to display reverse of a number using for loop?
when will be evaluated as true/ if(x==x==x) a) x=1; b) x=0; c) x=-1; d) none
One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.
pierrot's divisor program using c or c++ code
Compare and contrast compilers from interpreters.
Do you know the difference between exit() and _exit() function in c?
what is out put of the following code? #include class Base { Base() { cout<<"constructor base"; } ~Base() { cout<<"destructor base"; } } class Derived:public Base { Derived() { cout<<"constructor derived"; } ~Derived() { cout<<"destructor derived"; } } void main() { Base *var=new Derived(); delete var; }
write a 'c' program to sum the number of integer values
If I want to initialize the array like. int a[5] = {0}; then it gives me all element 0. but if i give int a[5] = {5}; then 5 0 0 0 0 is ans. what will I do for all element 5 5 5 5 5 in a single statement???
WRITE A PROGRAM IN C TO MULTIPLY TWO 2-D ARRAYS
What is bin sh c?
code for bubble sort?