Answer Posted / anita
Syntel's entrepreneurial culture encourages employees to
think and act like company owners, delivering a
culture of Opportunity, Choice, and Ownership.It increases
interpersonal skills as well as problem solving skills in
the global world.
| Is This Answer Correct ? | 14 Yes | 16 No |
Post New Answer View All Answers
What are the features of c language?
What is difference between class and structure?
Why C language is a procedural language?
What is indirection in c?
What is the sizeof () operator?
How do I use void main?
Explain can static variables be declared in a header file?
Why c language is called c?
Create a structure to specify data on students as given below: Roll number, Name, Department, Course, and Year of joining. Assume that there are not more than 450 students in the collage. (a) Write a function to print the names of all students who joined in the last 3 years. (b) Write a function to print the data of a student whose roll numbers are divisible by 4.
How variables are declared in c?
What are global variables?
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
Why do we write return 0 in c?
What is omp_num_threads?
What 'lex' does?