how would a 4*3 array A[4][3] stored in Row Major Order?
No Answer is Posted For this Question
Be the First to Post Answer
What is variable and explain rules to declare variable in c?
What is structure pointer in c?
When should a far pointer be used?
. 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.
How does free() know explain how much memory to release?
20. main() { int i=5; printf("%d%d%d%d%d%d",i++,i--,++i,--i,i); } Answer:??????
What is quick sort in c?
write a function to swap an array a[5] elements like a[0] as a[5],a[1] as a[4],....a[5] as a[0].without using more than one loop and use one array not to use temp array?
explain what are actual arguments?
Here is a good puzzle: how do you write a program which produces its own source code as output?
Write a C program to perform some of the operation which can be performed using Single linked list
/*what is the output for the code*/ void main() { int r; r=printf("naveen"); r=printf(); printf("%d",r); getch(); }