Answer Posted / devi
main function is used in C,C++,Java languages which is
first read by the compiler.
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What will be the outcome of the following conditional statement if the value of variable s is 10?
how do you execute a c program in unix.
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
How can you find the exact size of a data type in c?
can we implement multi-threads in c.
What type of function is main ()?
what is the difference between 123 and 0123 in c?
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
How does free() know explain how much memory to release?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
What is return type in c?
Is fortran still used today?
What is the difference between ++a and a++?
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
Explain what is the benefit of using enum to declare a constant?