Differentiate fundamental data types and derived data types in C.
No Answer is Posted For this Question
Be the First to Post Answer
Tell us two differences between new () and malloc ()?
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..
can any one tell that i have a variable which is declared as static but i want this variable to be visible to the other files? how?
errors in computer programmes are called
How is a null pointer different from a dangling pointer?
What is the difference between printf and scanf )?
What does c mean in standard form?
In the following code segment what will be the result of the function, value of x , value of y { unsigned int x=-1; int y; y = ~0; if(x == y) printf("same"); else printf("not same"); } a) same, MAXINT, -1 b) not same, MAXINT, -MAXINT c) same , MAXUNIT, -1 d) same, MAXUNIT, MAXUNIT e) not same, MAXINT, MAXUNIT
What are structures and unions? State differencves between them.
What is the difference between a structure and a union?
how can make variable not in registers
Are the variables argc and argv are local to main?