what is the program to display your name in any color?
Answers were Sorted based on User's Feedback
Answer / subham verma
We can display it using Paint.
Thanks and regards:-
SUBHAM VERMA
| Is This Answer Correct ? | 0 Yes | 2 No |
How will you allocate memory to a double pointer ?
why we are using semicolon at the end of printh statment
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
Explain the difference between fopen() and freopen().
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); } wat is the o/p and how?
What is s or c?
What is meant by type casting?
What is dynamic variable in c?
What is the relation between # and include<stdio.h>
void main() { int s[4][2]={ {1234,56},{1212,33},{1434,80},{1312,78} }; int (*p)[2]; int i,j,*pint; for(i=0;i<=3;i++) { p=&s[i]; pint=p; printf("\n"); for(j=0;j<=1;j++) printf("%d",*(pint+j)); } } while running this program it shows a warning-suspicious pointer conversion ie pint=p; my que is why should we assign the value of p to pint again.why cant we use it directly as *(p+j)..but if i use like tat the o/p is garbage value..
What is Heap?
What is gets() function?