How we can write a value to an address using macro..?
No Answer is Posted For this Question
Be the First to Post Answer
How pointers are declared?
main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("b") }
i want to know aptitude questions,technical questions
if array a conatins 'n' elements and array b conatins 'n-1' elements.array b has all element which are present in array a but one element is missing in array b. find that element.
18 Answers Parexel, Ram Infotech, Zycus Infotech,
#include<stdio.h> int main() { int i=2; int j=++i + ++i + i++; printf("%d\n",i); printf("%d\n",j); }
What's the best way to declare and define global variables?
how can use subset in c program and give more example
how many times does the loop iterated ? for (i=0;i=10;i+=2) printf("Hi\n");
why TCS selected more student in the software field from all institution.
Explain what is the benefit of using #define to declare a constant?
Explain what are the advantages and disadvantages of a heap?
How will you allocate memory to a double pointer ?