Why is struct padding needed?
No Answer is Posted For this Question
Be the First to Post Answer
What is nested structure with example?
What is the significance of an algorithm to C programming?
C passes By value or By reference?
5 Answers Geometric Software, Infosys,
main() {char a[10]={1,2,3,4,5,6};int x; for(x=0;x<4;x++){ b[x]=x+'a';} printf("%s",b);}
difference between malloc and calloc
A program to allow an input operand and operator from the operator and read on the display and output operand.
What is the use of static variable in c?
What will be the output of following program #include main() { int x,y = 10; x = y * NULL; printf("%d",x); }
Explain what does it mean when a pointer is used in an if statement?
What are the Advantages of using macro
how to execute a program using if else condition and the output should enter number and the number is odd only...
What is an anonymous union and where to apply that ?