what is brs test reply me email me kashifabbas514@gmail.com
No Answer is Posted For this Question
Be the First to Post Answer
Find the largest number in a binary tree
Write a Program that Inputs 10 Numbers in an Array and Show the Maximum Number
Is the following code legal? typedef struct a { int x; aType *b; }aType
Predict the Output: int main() { int *p=(int *)2000; scanf("%d",2000); printf("%d",*p); return 0; } if input is 20 ,what will be print
union u { struct st { int i : 4; int j : 4; int k : 4; int l; }st; int i; }u; main() { u.i = 100; printf("%d, %d, %d",u.i, u.st.i, u.st.l); } a. 4, 4, 0 b. 0, 0, 0 c. 100, 4, 0 d. 40, 4, 0
Write a prog to accept a given string in any order and flash error if any of the character is different. For example : If abc is the input then abc, bca, cba, cab bac are acceptable, but aac or bcd are unacceptable.
why java is platform independent?
write a c program to Reverse a given string using string function and also without string function
write the function. if all the character in string B appear in string A, return true, otherwise return false.
How we will connect multiple client ? (without using fork,thread)
#include<stdio.h> main() { int a[2][2][2] = { {10,2,3,4}, {5,6,7,8} }; int *p,*q; p=&a[2][2][2]; *q=***a; printf("%d..%d",*p,*q); }
find A^B using Recursive function