Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?
No Answer is Posted For this Question
Be the First to Post Answer
What is define c?
Explain how can you restore a redirected standard stream?
HOW CAN ADD OUR FUNCTION IN LIBRARY.
a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list
Why dont c comments nest?
Differentiate between the = symbol and == symbol?
Does c have an equivalent to pascals with statement?
What is return type in c?
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.
What is the difference between break and continue?
f(x,y,z) { y = y+1; z = z+x; } main() { int a,b; a = 2 b = 2; f(a+b,a,a); print a; } what is the value of 'a' printed
What is the difference between malloc calloc and realloc in c?