Explain bitwise shift operators?
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array
What is array of structure in c?
What is a header file?
Differentiate between static and dynamic modeling.
int main() { int i=-1,j=-1;k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d%d%d%d%d",i,j,k,l,m); }
Can variables be declared anywhere in c?
How will you allocate memory to double a pointer?
Write a program that takes a 3 digit number n and finds out whether the number 2^n + 1 is prime, or if it is not prime find out its factors
what is void pointer?
What are the advantages of c language?
What is non linear data structure in c?