What are the standard predefined macros?
No Answer is Posted For this Question
Be the First to Post Answer
Are there any problems with performing mathematical operations on different variable types?
provide an example of the Group by clause, when would you use this clause
Given an array A[n+m] of n+m numbers, where A[1] ... A[n] is sorted and A[n+1] ... A[n+m] is sorted. Design a linear time algorithm to obtain A[1...n+m] sorted using only O(1) extra space. Time Complexity of your algorithm should be O(n) and Space Complexity O(1).
What does & mean in scanf?
what is difference between #include<stdio.h> and #include"stdio.h"
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?
What is indirection in c?
Why doesnt this code work?
writw a program to insert an element in the begning of a doubly linked list
What are operators in c?
study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above
What is the meaning When we write "#include" what is # and what does include does there???