Bloomberg LP Interview Question for Software Engineer / Developers






Comment hidden because of low score. Click to expand.
0
of 0 vote

#include <stdio.h>
typedef const char * monthTable[3];
int main()
{
	monthTable t1,t2={"Jan","Feb","Mar"};
	int i=0;
	for(i=0;i<3;i++)
	{
		printf("%s\n",t2[i]);
	}
	return 1;
}

Self explanatory!

- Anonymous January 20, 2009 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

main() {
int x=10,y=100 % 90;

- Anonymous September 06, 2021 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

typedef const *monthTable[3]

- Anonymous January 19, 2022 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

typedef const char " month table[3];

- Anonymous May 29, 2022 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

typedef const char * monthtable[3];

- Anonymous May 29, 2022 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

typedef const char *Month table[3];

- Anonymous May 30, 2022 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

typedef const char "monthtable[3];

- Anonymous May 30, 2022 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

typedef const char *month table[3];

- Anonymous July 23, 2022 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

#include <stdio.h>
typedef const char * monthTable[3];
int main()
{
monthTable t1,t2={"Jan","Feb","Mar"};
int i=0;
for(i=0;i<;3;i++)
{
printf("%s\n",t2[i]);
}
return 1;
}

- Anonymous December 09, 2022 | Flag Reply
Comment hidden because of low score. Click to expand.
-1
of 1 vote

typedef const char * monthtable [3 ];

- Anonymous May 29, 2022 | Flag Reply
Comment hidden because of low score. Click to expand.
-2
of 2 vote

typedef construction char *monthTable[3]

- Anonymous September 07, 2021 | Flag Reply
Comment hidden because of low score. Click to expand.


Add a Comment
Name:

Writing Code? Surround your code with {{{ and }}} to preserve whitespace.

Books

is a comprehensive book on getting a job at a top tech company, while focuses on dev interviews and does this for PMs.

Learn More

Videos

CareerCup's interview videos give you a real-life look at technical interviews. In these unscripted videos, watch how other candidates handle tough questions and how the interviewer thinks about their performance.

Learn More

Resume Review

Most engineers make critical mistakes on their resumes -- we can fix your resume with our custom resume review service. And, we use fellow engineers as our resume reviewers, so you can be sure that we "get" what you're saying.

Learn More

Mock Interviews

Our Mock Interviews will be conducted "in character" just like a real interview, and can focus on whatever topics you want. All our interviewers have worked for Microsoft, Google or Amazon, you know you'll get a true-to-life experience.

Learn More