Do you know the difference between exit() and _exit() function in c?
No Answer is Posted For this Question
Be the First to Post Answer
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
Is it possible to execute code even after the program exits the main() function?
How to write a program to receive an integer & find its octal equivalent by using for loop?
write a program to arrange the contents of a 1D array in ascending order
how could explain about job profile
What is sizeof int?
What is unary operator?
main() { char x; while(x=0;x<=255;x++) printf("\nAscii value %d Charater %c",x,x); }
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
Explain low-order bytes.
to get a line of text and count the number of vowels in it
What are the advantage of c language?