Explain continue keyword in c
No Answer is Posted For this Question
Be the First to Post Answer
write a c program to find largest number in matrix(in each row,each column, diagonally, and in the whole matrix)? Its urgent.
what is the diff b/w static and non static variables in C. Give some examples plz.
the operator for exponencation is a.** b.^ c.% d.not available
what are far pointers?
What is far pointer in c?
Is there any algorithm to search a string in link list in the minimum time?(please do not suggest the usual method of traversing the link list)
explain what is fifo?
Explain this code. #include <stdio.h> void f1(int *k) { *k = *k + 10; } main ( ){ int i; i = 0; printf (" The value of i before call %d \n", i); f1 (&i); printf (" The value of i after call %d \n", i); }
Discuss the function of conditional operator, size of operator and comma operator with examples.
In C, What is the #line used for?
Explain what is wrong with this program statement? Void = 10;
Explain how can you determine the size of an allocated portion of memory?