What is the difference between c &c++?
No Answer is Posted For this Question
Be the First to Post Answer
write a statement to display all the elements array M(in reverse order? int M[8]={20,21,22,23,24,25,26,27};
What is page thrashing?
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
Why string is used in c?
Write a program to generate prime factors of a given integer?
What is the purpose of the preprocessor directive error?
What is the difference between formatted&unformatted i/o functions?
Is file a keyword in c?
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
enum day = { jan = 1 ,feb=4, april, may} what is the value of may? a)4 b)5 c)6 d)11 e)none of the above
When should the volatile modifier be used?
Write a program to produce the following output in c language? 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1