What is undefined behavior?
Answer / nashiinformaticssolutions
A program behavior that is not defined by the C standard, e.g., dividing by zero.
| Is This Answer Correct ? | 0 Yes | 0 No |
What are valid operations on pointers?
Is fortran still used in 2018?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
Why are algorithms important in c program?
what are bit fields in c?
Write a program to swap two numbers without using third variable in c?
what is the difference between c and java?
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
Write a code to reverse string seperated by spaces i/p str=India is my country o/p str=aidnI si ym yrtnuoc After writing code, optimize the code
A program to allow an input operand and operator from the operator and read on the display and output operand.
What is structure padding ?
write a programming in c to find the sum of all elements in an array through function.