What is c value paradox explain?
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of #define preprocessor in c?
What is a far pointer?What is the utility?
char ch=10;printf("%d",ch);what is the output
how to print this sereis 2 4 3 6 5..........?
What is the difference between typedef and #define?
To what value do nonglobal variables default? 1) auto 2) register 3) static
Explain what are its uses in c programming?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
Explain what math functions are available for integers? For floating point?
How pointers are declared?
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 are the 5 types of inheritance in c ++?