What are the benefits of c language?
No Answer is Posted For this Question
Be the First to Post Answer
Can you write the function prototype, definition and mention the other requirements.
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.
what is purpose of fflush(stdin) function
what is a pointer
4 Answers Bank Of America, TCS,
control 50 devices which has 2 states on and off.using bitwise operator.plz answer it its urgent
simple c program for 12345 convert 54321 with out using string
Write a program using two-dimensional array that lists the odd numbers and even numbers separately in a 12 input values.
Write a program that takes a 5 digit number and calculates 2 power that number and prints it
5 Answers ABS, Accenture, HCL, Infosys, Infotech, SoftSolve, Software India, TCS, Vertex, Vimukti Technologies,
In C program, at end of the program we will give as "return 0" and "return 1", what they indicate? Is it mandatory to specify them?
What are the modifiers available in c programming language?
main() { char ch='356'; Printf("%d",ch); } *OUTPUT*:- -18 *Why?*
# define prod(a,b)=a*b main() { int x=2; int y=3; printf("%d",prod(x+2,y-10)); } the output of the program is a.8 b.6 c.7 d.none