Why is structure padding done in c?
No Answer is Posted For this Question
Be the First to Post Answer
how to construct a simulator keeping the logical boolean gates in c
What is the time and space complexities of merge sort and when is it preferred over quick sort?
What happens if header file is included twice?
what is the self-referential structure?
void main() { int a=1; while(a++<=1) while(a++<=2); }
Write a c code segment using a for loop that calculates and prints the sum of the even integers from 2 to 30, inclusive?
What are unions in c?
void main() {int a[5],i,b=16; for(i=0;i<5;i++) a[i]=2*i; f(a,5,b); for(i=0;i<5;i++) printf("\n %d",a[i]); printf("\n %d",b); } f(int *x,int n,int y) { int i; for(i=0;i<n;i++) *(x+i)+=2; y=y+2; }wat r the errors in the prg.and improvise the prg to get o/p.?
Is an array parameter is always "by reference" ?
Can a void pointer point to a function?
Simplify the program segment if X = B then C ← true else C ← false
What is external variable in c?