how can u draw a rectangle in C
Answers were Sorted based on User's Feedback
Answer / sumit
using ASCII codes and then using goto statements
| Is This Answer Correct ? | 42 Yes | 126 No |
create a login program that ask username and password. if you input username or password 3 times wrong, the program will terminate else the program will prompt a message "congratulations"
main() { char s[ ]="man"; int i; for(i=0;s[ i ];i++) printf("\n%c%c%c%c",s[ i ],*(s+i),*(i+s),i[s]); }
void main() { while(1){ if(printf("%d",printf("%d"))) break; else continue; } }
Write a c program to search an element in an array using recursion
Is the following code legal? struct a { int x; struct a *b; }
Finding a number multiplication of 8 with out using arithmetic operator
Is the following code legal? typedef struct a { int x; aType *b; }aType
int a = 10 + 10 .... ,... A = A * A What would be the value of A? The answer is 120!! Could anyone explain this to me.
2 Answers Bosch, eInfochips, HCL, IHCL,
Link list in reverse order.
Is the following code legal? struct a { int x; struct a b; }
write a program in c to merge two array
Is it possible to type a name in command line without ant quotes?