which operator is known as dummy operator in c?
Answers were Sorted based on User's Feedback
What is wrong in this statement?
True or false: If you continuously increment a variable, it will become negative? 1) True 2) False 3) It depends on the variable type
How to explain the final year project as a fresher please answer with sample project
What are types of structure?
what is the difference between getch() and getchar()?
What is union and structure?
What is the difference between realloc() and free()
biggest of two no's with out using if condition statement
what is structuer?
What is spaghetti programming?
Consider the following C program. #include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain
the number 138 is called well ordered number because the three digits in the number (1,3,8) increase from left to right (1<3<8). the number 365 is not well ordered coz 6 is larger than 5. write a program that wull find and display all possible three digit well ordered numbers. sample: 123,124,125,126,127,128,129,134 ,135,136,137,138,139,145,146,147 148 149,156.......789