What is the difference between abs() and fabs() functions?
No Answer is Posted For this Question
Be the First to Post Answer
accept character from keyboard untill the user presses the enter key.If the user enters any character other than upper case(A-Z)alphabets program should stop taking any input
Every time i run a c-code in editor, getting some runtime error and editor is disposing, even after reinstalling the software what may be the problem?
#include<stdio.h> int SumElement(int *,int); void main(void) { int x[10]; int i=10; for(;i;) { i--; *(x+i)=i; } printf("%d",SumElement(x,10)); } int SumElement(int array[],int size) { int i=0; float sum=0; for(;i<size;i++) sum+=array[i]; return sum; } output?
how will you write a program on linked lists using JAVA programming???????????
What compilation do?
7 Answers Geometric Software, Infosys,
how to find that no is int or float?
How to write a code for implementing my own printf() and scanf().... Please hep me in this... I need a guidance... Can you give an coding for c... Please also explain about the header files used other than #include<stdio.h>...
how to exchnage bits in a byte b7<-->b0 b6<-->b1 b5<-->b2 b4<-->b3 please mail me the code if any one know to rajeshmb4u@gmail.com
Is there any possibility to create customized header file with c programming language?
Write a C program to check a number even or odd, without using any relational, arithmetic operator and any loops.
how does a general function , that accepts an array as a parameter, "knows" the size of the array ? How should it define it parameters list ?
How can I manipulate strings of multibyte characters?