What is nested structure with example?
No Answer is Posted For this Question
Be the First to Post Answer
Linked lists -- can you tell me how to check whether a linked list is circular?
What is #include cctype?
What is the meaning of c in c language?
What does %d do?
Symmetric technologies interview questions. For Computer science candidates the first round is a objective type written test consisting of 16 questions.It is very easy ,any police man can solve this. And next round is a written test consists of both objective and subjective .Total 40 question related to c,c++ and operating system related questions. And then a technical interview and give some program to solve with computer.The md is adamant person, whatever he says we have to accept that is the condition. And one more thing ,,,these interview is just for a formality..the company will select only innocent guys.. the person's without a backbone only they require.. And u have to submit the certificates this is the most important problem...So if you are not getting any other jobs..then only join with this... It is better to try for other company...And apart from that symmetric do a lot of projects..If a candidate can manage everything u can join and make good career with this company... The Md will normally speak rudely..but he is good person and he will give you a lot of very good chances to improve your career....but with cheap salary....
0 Answers Symmetric Technologies,
Multiply an Integer Number by 2 Without Using Multiplication Operator
f(x,y,z) { y = y+1; z = z+x; } main() { int a,b; a = 2 b = 2; f(a+b,a,a); print a; } what is the value of 'a' printed
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2
State the difference between realloc and free.
In c programming, explain how do you insert quote characters (? And ?) Into the output screen?
Write a C program where input is: "My name is xyz". output is: "xyz is name My".
what would be the output of the following program main() { int a[] = {1,2,3,4,5}; int *ptr = {a,a+1,a+2,a+3,a+4}; printf("%d %d %d %d",a,*ptr,**ptr,ptr); } }