What is a structural principle?
No Answer is Posted For this Question
Be the First to Post Answer
write a program to display the numbers in the following format 4 4 3 3 3 3 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 2 2 2 2 2 3 3 3 4
int j =15,i; for (i=1; 1<5; ++i) {printf ("%d%d ",j,i); j = j-3; }
can we initialize all the members of union?
Explain Function Pointer?
What is dynamic variable in c?
What is the output of below code? main() { static int a=5; printf("%3d",a--); if(a) main(); }
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
What are the advantages and disadvantages of c language?
the maximum width of a c variable name can be a) 6 characters b) 8 characters c) 10 characters d) 20 characters
how to get the starting address of file stored in harddisk through 'C'program.
How does the assert() function work?
What is the difference between typedef struct and struct?