Why c is faster than c++?
No Answer is Posted For this Question
Be the First to Post Answer
If 4 digits number is input through the keyboard, Write a program to calculate sum of its 1st & 4th digit.
What is volatile c?
c program to manipulate x=1+3+5+...+n using recursion
regarding the scope of the varibles;identify the incorrect statement: a.automatic variables are automatically initialised to 0 b.static variables are are automatically initialised to 0 c.the address of a register variable is not accessiable d.static variables cannot be initialised with any expression
difference between i++* and *++i
How to write c functions that modify head pointer of a linked list?
write a program to delete an item from a particular location of an linear array?
Write a program for Overriding.
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
what is the difference between const volatile int i & volatile const int j;
write a c program to find largest number in matrix(in each row,each column, diagonally, and in the whole matrix)? Its urgent.