What is the difference b/w main() in C language and main()
in C++.
Answer Posted / ppp
In c:
int main(){ void main(){
..... .......
..... OR ......
return 0; }
}
| Is This Answer Correct ? | 2 Yes | 6 No |
Post New Answer View All Answers
Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.
1) write a program to generate 1st n fibonacci prime numbers using Nested if 2) write a program to generate twin prime numbers from m to n using nested if 3) write a program to check whether a given integer is a strong number or not using nested if 4) Write a program to generate prime factors of a given integer using nested if 5)write a program to generate prime numbers from m to n using nested if 6)write a program to generate perfect numbers from m to n using nested if 7)write a program to generate the pallindromes from m to n using neste if 8)write a program to generate armstrong numbers from m to n using nested if 9)write a program to generate strong numbers from m to n using nested if
hi to every one .. how to view table pool after creating the pooled table? plz help me.. if any knows abt this ..
How can I copy just a portion of a string?
Write a C program that will accept a hexadecimal number as input and then display a menu that will permit any of the following operations to be carried out: Display the hexadecimal equivalent of the one's complement. (b) Carry out a masking operation and then display the hexadecimal equivalent of the result. (c) Carry out a bit shifting operation and then display the hexadecimal equivalent of the result. (d) Exit. If the masking operation is selected, prompt the user lor the type of operation (bitwise and, bitwise exclusive or, or bitwise or) and then a (hexadecimal) value for the mask. If the bit shifting operation is selected. prompt the user for the type of shift (left or right), and then the number of bits. Test the program with several different (hexadecimal) input values of your own choice.
What oops means?
write a c program in such a way that if we enter the today date the output should be next day's date.
I need a sort of an approximate strcmp routine?
Explain how can you tell whether a program was compiled using c versus c++?
Write a progarm to find the length of string using switch case?
What is a file descriptor in c?
What is difference between %d and %i in c?
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
Why is C language being considered a middle level language?
Can we initialize extern variable in c?