Tell us the use of fflush() function in c language?
No Answer is Posted For this Question
Be the First to Post Answer
How is actual parameter different from the formal parameter?
Two's compliment of -5
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
a C prog to swap 2 no.s without using variables just an array?
What is the Purpose of 'extern' keyword in a function declaration?
Write a program to compare two strings without using the strcmp() function
42 Answers Accenture, Arba Minch University,
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300
write a c program to print the values in words eg:- 143 written it has (one hundred and forty three)& 104, 114 are also written words
5 Answers Captronic, DELL, Google, IBM, Mithi, RCC, Wipro,
How many levels of pointers have?
How can I find out how much memory is available?
What is d'n in c?
What is the purpose of macro in C language?