How is = symbol different from == symbol in c programming?
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
When should structures be passed by values or by references?
main() { int i=400,j=300; printf("%d..%d"); }
what is the associativity of bitwise OR operator?
Write a programe print the sum of series 0,1,2,.....10
What is this pointer in c plus plus?
What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file
C program to find frequency of each character in a text file?
progrem to generate the following series 1 12 123 1234 12345
What does %f mean c?
How can you avoid including a header more than once?