What are the different file extensions involved when programming in C?
No Answer is Posted For this Question
Be the First to Post Answer
How can I sort a linked list?
what is the output of the following program? #include<stdio.h> void main() { float x=1.1; while(x==1.1) { printf("\n%f",x); x=x-0.1; } }
What does sizeof return c?
What are lookup tables in c?
how we can say java is platform independent, while we require JVM for that particular Operating System?
‘SAVEPOINT’ and ‘ROLLBACK’ is used in oracle database to secure the data comment. Give suitable examples of each with sql command.
Write a program that takes three variables(a,b,c) in as separate parameters and rotates the values stored so that value a goes to b,b,to c and c to a
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
How can you draw circles in C?
write a program in c language for the multiplication of two matrices using pointers?
how many times does the loop iterated ? for (i=0;i=10;i+=2) printf("Hi\n");
What is #define in c?