What are the rules for the identifier?
what is the maximum limit of row and column of a matrix in c programming. in linux .
How can I determine whether a machines byte order is big-endian or little-endian?
What is the difference between far and near ?
What is the most efficient way to count the number of bits which are set in an integer?
what is output of the following statetment?Printf(“%x”, -1<<4); ?
int main() { int days; printf("enter days you are late"); scanf("%d",days); if (days<=5) printf("5o paisa fine"); if (days<=10&&days>=6) printf("1rs fine"); if(days>10) printf("10 rs fine"); if(days=30) printf("membership cancelled"); return 0; } tell me whats wrong in this program? is it right?
which type of question asked from c / c++ in interview.
Why doesnt long int work?
How is a null pointer different from a dangling pointer?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
What is the meaning of c in c language?
write a program in c to read array check element is present or not?