Explain what are the standard predefined macros?
No Answer is Posted For this Question
Be the First to Post Answer
how to create c progarm without void main()?
Write a program to print distinct words in an input along with their count in input in decreasing order of their count
What is meant by preprocessor in c?
what is uses of .net
The __________ attribute is used to announce variables based on definitions of columns in a table?
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..
difference between the array and linked list general difference related to memory
How can I change the size of the dynamically allocated array?
main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); }
11 Answers CISOC, CitiGroup, College School Exams Tests,
Differentiate fundamental data types and derived data types in C.
What do you mean by dynamic memory allocation in c?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);