What is bin sh c?
No Answer is Posted For this Question
Be the First to Post Answer
find the sum of two matrices and WAP for it.
What is c method?
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
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
a program that can input number of records and can view it again the record
How would you print out the data in a binary tree, level by level, starting at the top?
How do you override a defined macro?
What is the relation between # and include<stdio.h>
Find the largest number from the given 2 numbers without using any loops and the conditional operator.
What is malloc calloc and realloc in c?
#define min((a),(b)) ((a)<(b))?(a):(b) main() { int i=0,a[20],*ptr; ptr=a; while(min(ptr++,&a[9])<&a[8]) i=i+1; printf("i=%d\n",i);}
I heard that you have to include stdio.h before calling printf. Why?