What is function what are the types of function?
No Answer is Posted For this Question
Be the First to Post Answer
What is output of the following program ? main() { i = 1; printf("%d %d %d\n",i,i++,i++); }
write a program which will count occurance of a day between two dates.
whether itis a structured language?
What is string length in c?
Explain what is wrong with this program statement? Void = 10;
Suppose we have a table name EMP as below. We want to perform a operation in which, I want to change name ‘SMITH’ from as ‘SMITH JAIN’. Also I want to change the name of the column from ENAME to E_NAME. EMPNO ENAME JOB MGR HIREDATE SAL 7369 SMITH Coder 7902 17-DEC-80 800 7499 ALLEN SALESMAN 7698 20-FEB-81 1600 7521 WARD SALESMAN 7698 22-FEB-81 1250
give an example of type casting by a simple c program
Explain how can I remove the trailing spaces from a string?
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.
main() { int i; for(i=0;i<5;i++) printf("%d",1l<<i); } why doesn't 'l' affect the code??????
void main() { int a=1; printf("%d %d %d",a,++a,a++); } the output is supposed to be 1 2 2....but it is 3 3 1 this is due to calling conventions of C. if anyone can explain me how it happens?
Can i use Two or More Main Funtion in any C program.?