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
void main() { int i=5; printf("%d",i+++++i); }
Where static variables are stored in memory in c?
. A database table called PERSON contains the fields NAME, BASIC and HRA. Write a computer program to print a report which employee name and total salary for those employees whose total salary is more than 10,000. Total Salary = BASIC + HRA. At the end, the program should also print the total number of employees whose total salary is more than 10,000.
Software Interview Questions
for(;;) printf("C language") What is out put of above??
2 Answers Practical Viva Questions,
Is it possible to run using programming C for Java Application?
What are register variables? What are the advantage of using register variables?
How do I read the arrow keys? What about function keys?
how to capitalise first letter of each word in a given string?
What is null in c?
what is the output on the screen? int n; n=printf("my name is %d",printf("kiran %d",printf("kumar"))); printf("\n %d \n",n);
Unsigned char c; for ( c=0;c!=256;c++2) printf("%d",c); No. of times the loop is executed ?