What is volatile, register definition in C
No Answer is Posted For this Question
Be the First to Post Answer
What is a function simple definition?
main is a predefined or user define function if user defined why? if predefined whay?
which one is better structure or union?(other than the space occupied )
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?
Do you know what is the purpose of 'extern' keyword in a function declaration?
what is the difference between arrays and linked list
26 Answers MAHINDRA, Tech Mahindra, Wipro,
. 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.
Explain how can I open a file so that other programs can update it at the same time?
What are the types of assignment statements?
Why we use int main and void main?
21. #define square(x) x*x main() { int i; i = 64/square(4); printf("%d",i); }
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }