What are the salient features of c languages?
No Answer is Posted For this Question
Be the First to Post Answer
which of the following go out of the loopo if expn 2 becoming false a.while(expn 1){...if(expn 2)continue;} b.while(!expn 1){if(expn 2)continue;...} c.do{..if(expn 1)continue;..}while(expn 2); d.while(!expn 2){if(expn 1)continue;..}
Which node is more powerful and can handle local information processing or graphics processing?
How #define works?
what does ‘#include’ mean?
What is the function of multilevel pointer in c?
what's the o/p int main(int n, char *argv[]) { char *s= *++argv; puts(s); exit(0); }
While(1) { } when this loop get terminate is it a infinite loop?
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above
what are # pragma staments?
What is the difference between functions abs() and fabs()?
what is the differance between pass by reference and pass by value.
What is a loop?