What is the usage of the pointer in c?
No Answer is Posted For this Question
Be the First to Post Answer
write a program that uses point of sale system. which are mainly used by retail markets, where the is a database inventory list, a slip should be printed for the customer. manage should be able to access what has been sold and what is left from stock?
number of times a digit is present in a number
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
p*=(++q)++*--p when p=q=1 while(q<=6)
What is the difference between malloc() and calloc() function in c language?
What is an lvalue?
What are the various types of control structures in programming?
What is the output of the below program and how it is? void main() { static int var=5; printf("%d",var--); if(var) main(); }
8 Answers MindFire, TCS, Tech Mahindra,
the statement while(i) puts the entire logic in loop. this loop is called a) indefinite loop b) definite loop c) loop syntax wrong d) none of the above
What do you mean by a local block?
main() { struct test { char c; int i; char m; } t1; printf("%d %d\n", sizeof(t1), sizeof(t1.c)); }
1 Answers Vector, Vector India,
what is call by value and call by reference