What is wrong with this initialization?
No Answer is Posted For this Question
Be the First to Post Answer
What are the 5 types of inheritance in c ++?
parkside's triangle.. create a program like this.. enter the size: 6 enter the seed: 1 output: 1 23 456 7891 23456 789123 sample2: enter the size: 5 enter the seed: 3 output: 3 45 678 9123 45678 parkside should not exceed 10 while its seed should only be not more than 9..
What is the difference between the expression “++a” and “a++”?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
to get a line of text and count the number of vowels in it
What is pre-emptive data structure and explain it with example?
Write a small C program to determine whether a machine's type is little-endian or big-endian.
"C" language developed by "Dennis Ritchie" at AT & T. his remarks are a) too general, too abstract b) could deal with only specific problems c) lost generality of BCPL and B restored d) no remarks
What is clrscr ()?
main() { int i=0; while(+(+i--)!=0) i-=i++; printf("%d",i); }
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above
what is memory leak?