What is define c?
No Answer is Posted For this Question
Be the First to Post Answer
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
How to find the given no is odd or even without checking of any condition and loops. (Hint: Using array)
parkside's triangle.. create a program like this.. enter the size: 6 enter the seed: 1 output: 1 23 456 7891 23456 789123 sample2: enter the size: 5 enter the seed: 3 output: 3 45 678 9123 45678 parkside should not exceed 10 while its seed should only be not more than 9..
What is the use of the #include directive?
What is difference between structure and union?
what is diference between return 0 and return NULL??
Explain how do you convert strings to numbers in c?
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
Can a pointer point to null?
can any one provide me the notes of data structure for ignou cs-62 paper
read the folllowing code # define MAX 100 # define MIN 100 .... .... if(x>MAX) x=1; else if(x<MIN) x=-1; x=50; if the initial value of x=200,what is the vlaue after executing this code? a.200 b.1 c.-1 d.50
Juxtapose the use of override with new. What is shadowing?