What is meant by high-order and low-order bytes?
No Answer is Posted For this Question
Be the First to Post Answer
What is the purpose of clrscr () printf () and getch ()?
What is the memory allocated by the following definition ? int (*x)[10];
Is null equal to 0 in sql?
What are static variables in c?
What is bash c?
What is the code for 3 questions and answer check in VisualBasic.Net?
What are the back slash character constants or escape sequence charactersavailable in c?
sum of two integers values only other then integer it should print invalid input.
What do you mean by c what are the main characteristics of c language?
Explain Linker and Loader
What is wrong with this code such that it doesnt produce the input reversed? #include <stdio.h> #include <stdlib.h> #include <string.h> int main(void) { char Space = ' '; char LineOfText; float count; LineOfText = getchar(); while ((LineOfText = getchar()) != '/n'); { count = strlen(LineOfText) - 1; while (count >= 0) { putchar(LineOfText[count]); count--; } } getchar(); return 0; }
#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?