What is difference between %d and %i in c?
No Answer is Posted For this Question
Be the First to Post Answer
what is the maximum limit of row and column of a matrix in c programming. in linux .
to print the salary of an employee according to follwing calculation: Allowances:HRA-20% of BASIC,DA-45% of BASIC,TA-10%. Deductions:EPF-8% of BASIC,LIC-Rs.200/-Prof.Tax:Rs.200/- create c language program?
How can you dynamically allocate memory in C?
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
5 Answers Vector, Vector Solutions,
why do we use pointer instead directly acessing the data?
Which header file is essential for using strcmp function?
What is the default value of local and global variables in c?
What do you mean by dynamic memory allocation in c?
What is the difference between new and malloc functions?
Define a structure to store roll no, name and marks of a student. Using the structure of above write a ‘C’ program to create a file “student.dat”. There must be one record for every student in the file. Accept the data from the user.
what is the difference between i++ and ++i?
Which header file is used for clrscr?