what is brs test reply me email me kashifabbas514@gmail.com
No Answer is Posted For this Question
Be the First to Post Answer
write a c program to Reverse a given string using string function and also without string function
main() { int x=5; clrscr(); for(;x==0;x--) { printf("x=%d\n”", x--); } } a. 4, 3, 2, 1, 0 b. 1, 2, 3, 4, 5 c. 0, 1, 2, 3, 4 d. none of the above
Finding a number multiplication of 8 with out using arithmetic operator
Implement a t9 mobile dictionary. (Give code with explanation )
1 Answers Amazon, Peak6, Yahoo,
main() { int i=5,j=10; i=i&=j&&10; printf("%d %d",i,j); }
To Write a C program to remove the repeated characters in the entered expression or in entered characters(i.e) removing duplicates. String contains only lowercase characters ['a'-'z']
plz tell me the solution.......... in c language program guess any one number from 1 to 50 and tell that number within 8 asking question in yes or no...............
What is the output of the program given below main() { signed char i=0; for(;i>=0;i++) ; printf("%d\n",i); }
Is the following code legal? typedef struct a { int x; aType *b; }aType
main() { int i; printf("%d",scanf("%d",&i)); // value 10 is given as input here }
Give a very good method to count the number of ones in a 32 bit number. (caution: looping through testing each bit is not a solution)
char *someFun() { char *temp = “string constant"; return temp; } int main() { puts(someFun()); }