What is the significance of an algorithm to C programming?
No Answer is Posted For this Question
Be the First to Post Answer
will the program compile? int i; scanf(ā%dā,i); printf(ā%dā,i);
What are .h files and what should I put in them?
#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?
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
What is difference between scanf and gets?
code for copying two strings with out strcpy() function.
differnce between do and do while
What is #pragma statements?
What is the difference between a string and an array?
void main() { char c; while(c=getchar()!='\n') printf("%d",c); } o/p=11 why?
Suggesting that there can be 62 seconds in a minute?
Why can’t we compare structures?