What is openmp in c?
When should the const modifier be used?
How to add two numbers without using semicolon at runtime
Who invented b language?
When should the volatile modifier be used?
Program to swap the any two elements in an array containing N number of elements?
1 Answers Bosch, Glenwood, Ugam Solutions,
Evaluate the following: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); 1) 10 2) 11 3) 1
What are multibyte characters?
why in C,C++'s int size is 2 byte and .net(c#) int Size is 4 byte?
How can I read a directory in a c program?
What is an volatile variable?
How can I call a function with an argument list built up at run time?
What are qualifiers?