Explain how are portions of a program disabled in demo versions?
No Answer is Posted For this Question
Be the First to Post Answer
what is the output of the program?? #include<stdio.h> main ( ) { int a=010,sum=0,tracker: for(tracker=0;tracker<=a;tracker++) sum+=tracker; printf(ā %d\nā,sum); } what is the difference between a=10 and a=010??
Is c language still used?
6)What would be the output? main() { int u=1,v=3; pf("%d%d",u,v); funct1(&u,&v); pf("%d%d\n",u,v); } void funct1(int *pu, int *pv) { *pu=0; *pv=0; return; } a)1 3 1 3 b)1 3 1 1 c)1 3 0 0 d)1 1 1 1 e) 3 1 3 1
how does printf function work
What are the advantages of using linked list for tree construction?
how we can say java is platform independent, while we require JVM for that particular Operating System?
how to multiply two number taking input as a string (considering sum and carry )
What is a header file?
What is the best way to store flag values in a program?
when to use : in c program?
What is the use of #include in c?
What are the differences between new and malloc in C?