What is infinite loop?
What is #include stdio h?
How can you increase the size of a dynamically allocated array?
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
Why do we use & in c?
an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational
How can you tell whether two strings are the same?
How many types of functions are there in c?
How do c compilers work?
What is difference between structure and union with example?
Explain why c is faster than c++?
What is the translation phases used in c language?
What is the benefit of using an enum rather than a #define constant?
What is New modifiers?