why ordinary variable store the later value not the initial
Answer / sandeep
When Ordinary variable's value changed after initialisation
it's memory will filled with the new value
| Is This Answer Correct ? | 1 Yes | 1 No |
Explain zero based addressing.
What is function pointer c?
In a switch statement, what will happen if a break statement is omitted?
main() { printf("hello%d",print("QUARK test?")); }
why in C,C++'s int size is 2 byte and .net(c#) int Size is 4 byte?
if p is a string contained in a string?
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
Is main() is used in the program,,see below example? void main() { int i; for(i=0;i<10;i++) main(); } Then what is the output of the program?
#include<stdio.h> void main() { int =1; printf("%d%d%d",a++,++a,++a); }
write a reverse string to print a stars.(with out using logic) ***** **** *** ** *
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
Explain how do you sort filenames in a directory?