What oops means?
No Answer is Posted For this Question
Be the First to Post Answer
How to avoid buffer overflow?
Explain pointer. What are function pointers in C?
what are enumerations in C
I heard that you have to include stdio.h before calling printf. Why?
What is %s and %d in c?
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?
write a c program to add two integer numbers without using arithmetic operator +
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
Is it better to use a macro or a function?
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
program to find the roots of a quardratic equation
44.what is the difference between strcpy() and memcpy() function? 45.what is output of the following statetment? 46.Printf(“%x”, -1<<4); ? 47.will the program compile? int i; scanf(“%d”,i); printf(“%d”,i); 48.write a string copy function routine? 49.swap two integer variables without using a third temporary variable? 50.how do you redirect stdout value from a program to a file? 51.write a program that finds the factorial of a number using recursion?