Are pointers integers in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the argument of a function in c?
What is output redirection?
#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 that will read the temperature in Celsius and convert that into Fahrenheit.
why little endian and big endian came?y they using differently? y they not used commonly ?wt is application of little and big ?
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
consider the following C code main() { int i=3,x; while(i>0) { x=func(i); i--; } int func(int n) { static sum=0; sum=sum+n; return(sum); } the final value of x is
WRITE A PROGRAM TO FIND A REVERSE OF TWO NO
Which header file should you include if you are to develop a function which can accept variable number of arguments?
Diff: between this 2 classes in terms of memory class A { int i; char c; double d; }; class A { double d; int i; char c; }; How it is calculating?
What is c language in simple words?
Write a c program for sum of first n terms of the series S = 1 - (1/3) + (1/5) -(1/7) + (1/9) ......