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 |
Tell me is null always defined as 0(zero)?
Example of friendly function in c++
How to print all the 26 alphabets in this order in C. AbCdEfGh..... it should print dynamically from a to z and do not print this using pgm like this print("Ab......"); Use loops or anything to print all alphabets
main() { int i = -3,j=2,k=0,m; m= ++i || ++j && ++k; printf("%d%d%d",i,j,k,m); }
What's the best way of making my program efficient?
What is the purpose of clrscr () printf () and getch ()?
What is exit() function?
how can u print a message without using any library function in c
Write a function that will take in a phone number and output all possible alphabetical combinations
What the advantages of using Unions?
what is the return type of printf
What is define directive?