What is the difference between printf and scanf in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between fork() and vfork()?
pascal triangle program
what is the output for the code : main() { int i,j; printf("%d %d ",scanf("%d%d",&i,&j)); }
Are c and c++ the same?
What is volatile keyword in c?
What is the use of pragma in embedded c?
Why c is a mother language?
What is an example of enumeration?
Why data types in all programming languages have some range? Why ritche have disigned first time likethat?Why not a single data type can support all other types?
Is there any algorithm to search a string in link list in the minimum time?(please do not suggest the usual method of traversing the link list)
main() { enum{red,green,blue=6,white}; pf("%d%d%d%d", red,green,blue,white); return 0; } a)0 1 6 2 b)0 1 6 7 c)Compilation error d)None of the above
Are enumerations really portable?