What's the right way to use errno?
No Answer is Posted For this Question
Be the First to Post Answer
when i declare as: void main() { clrscr(); int a=10; printf("%d",a) } my problem that why generate a error in above programs. please tell me answer seriously .
Who had beaten up hooligan "CHAKULI" in his early college days?
what is the use of macro program
What is Your Name :)
What are data breakpoints?
what is a void pointer?
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
what is meant by the "equivalence of pointers and arrays" in C?
Is fortran still used today?
Write a program in c to print * * * * * *******
IS it possible to define a zero sized array in c.if it is possible how can the elements of that array can be accessed.array index starts from zero,if it is possible to define zero sized array how can be its first element can be accesseed.
int i; i=2; i++; if(i=4) { printf(i=4); } else { printf(i=3); } output of the program ?