main()
{
int i = 10;
printf(" %d %d %d \n", ++i, i++, ++i);
}
Post New Answer View All Answers
Write a program of prime number using recursion.
What is a structure and why it is used?
Which is more efficient, a switch statement or an if else chain?
Why calloc is better than malloc?
What are the 5 types of organizational structures?
What is derived datatype 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
What are types of functions?
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none
What is New modifiers?
write a program fibonacci series and palindrome program in c
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
can we implement multi-threads in c.
Explain what is the benefit of using #define to declare a constant?