What are the 5 elements of structure?
No Answer is Posted For this Question
Be the First to Post Answer
What is the significance of c program algorithms?
Explain argument and its types.
When should a far pointer be used?
find the output of the following program main() { int x=5, *p; p=&x; printf("%d",++*p); }
An interactive c program to read basic salary of 15 persons. each person gets 25% of basic as HRA, 15%of basic as conveyance allowances, 10%of basic as entertainment allowances.The total salary is calculated by adding basic+HRA+CA+EA.Calculate how many out of 15 get salary above 10,000.Rs also print the salary of each employee
6)swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are yhe values x&y?
What do you mean by dynamic memory allocation in c? What functions are used?
Is it fine to write void main () or main () in c?
Write a C program that computes the value ex by using the formula ex =1+x/1!+x2/2!+x3+3!+………….
given post order,in order construct the corresponding binary tree
What are operators in c?
What is the purpose of #pragma directives in C?