What is non linear data structure in c?
No Answer is Posted For this Question
Be the First to Post Answer
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
What is the usage of the pointer in c?
What does printf does?
Concat two string with most overlapped substring has to remove "abcd"+ "cdef" = "abcdef
#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?
Difference between exit() and _exit() function?
How we can insert comments in a c program?
what is the use of ‘auto’ keyword?
Explain the concept of "dangling pointers" in C.
What is a c token and types of c tokens?
Are bit fields portable?
what is the role you expect in software industry?