What is %lu in c?
No Answer is Posted For this Question
Be the First to Post Answer
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
how to implement stack work as a queue?
What is pass by reference in functions?
What is variable and explain rules to declare variable in c?
please can any one suggest me best useful video tutorials on c i am science graduate.please help me.u can email me to sas29@in.com
main() { int a[3][4] ={1,2,3,4,5,6,7,8,9,10,11,12} ; int i, j , k=99 ; for(i=0;i<3;i++) for(j=0;j<4;j++) if(a[i][j] < k) k = a[i][j]; printf("%d", k); }
4 Answers Vector, Wipro, Zoho,
Why isn't any of this standardized in c? Any real program has to do some of these things.
In c language can we compile a program without main() function?
#ifdef TRUE int I=0; #endif main() { int j=0; printf("%d %d\n",i,j); }
When should I declare a function?
Explain Function Pointer?
Do you know what is the purpose of 'extern' keyword in a function declaration?