If errno contains a nonzero number, is there an error?
No Answer is Posted For this Question
Be the First to Post Answer
Why do we use pointer to pointer in c?
write a program to generate 1st n fibonacci prime number
Is a pointer a kind of array?
What is the difference between the local variable and global variable 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.
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,
why we use "include" word before calling the header file. is there any special name for that include??????
What is unary operator?
what is output of the following statetment?Printf(“%x”, -1<<4); ?
program for reversing a selected line word by word when multiple lines are given without using strrev
What is malloc and calloc?
Why does the call char scanf work?