What is the best organizational structure?
No Answer is Posted For this Question
Be the First to Post Answer
What is the Purpose of 'extern' keyword in a function declaration?
int a=0,b=2; if (a=0) b=0; else b=*10; What is the value of b ?
write a program that will read the temperature in Celsius and convert that into Fahrenheit.
Can the “if” function be used in comparing strings?
write a function that accepts an array A with n elements and array B with n-1 elements. Find the missing one in array B,with an optimized manner?
what are enumerations in C
I need previous papers of CSC.......plz help out by posting them.......
int main() { int i=1; switch(i) { case '1': printf("hello"); break; case 1: printf("Hi"); break; case 49: printf("Good Morning"); break; } return 0; }
in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above
code for inverse a matrix
What are the back slash character constants or escape sequence charactersavailable in c?
WAP to accept rollno,course name & marks of a student & display grade if total marks is above 200?