Can two or more operators such as
and be combined in a single line of program code?
No Answer is Posted For this Question
Be the First to Post Answer
what is the difference between malloc() and calloc() function?
What is main () in c language?
What is memmove?
How can I handle floating-point exceptions gracefully?
#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?
Write a program to reverse a given number in c language?
List the variables are used for writing doubly linked list program.
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
What is a Genralised LInked List?? Please give a detailed explation of it..
Tell me is null always defined as 0(zero)?
What is the difference between test design and test case design?
How can we see the Expanded source code and compiled code for our source program in C?