In C programming, how do you insert quote characters (‘ and “) into the output screen?
#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?
When can you use a pointer with a function?
What are .h files and what should I put in them?
What is return in c programming?
main() { int i=400,j=300; printf("%d..%d"); }
What is the difference between text and binary i/o?
When should a type cast be used?
Why are all header files not declared in every c program?
Is there a way to jump out of a function or functions?
what is use of loop?
Mention four important string handling functions in c languages .
What is the use of a static variable in c?