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 |
program to find which character is occured more times in a string and how many times it has occured? for example in the sentence "i love india" the output should be i & 3.
Write a program to print the prime numbers from 1 to 100?
What does %p mean?
related to rdbms query .
fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }
What does static mean in c?
What is variable declaration and definition in c?
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
2 Answers Aricent, Manipal University,
Explain how do you determine the length of a string value that was stored in a variable?
Which is the best website to learn c programming?
input any 4 digit number and find the difference of all the digits?
what are the uses of structure?