what are the languages used in c#?

Answers were Sorted based on User's Feedback



what are the languages used in c#?..

Answer / dinesh

c and c++

Is This Answer Correct ?    13 Yes 5 No

what are the languages used in c#?..

Answer / ankith.v

C And C++

Is This Answer Correct ?    1 Yes 3 No

what are the languages used in c#?..

Answer / srinivas

c++ and java

Is This Answer Correct ?    1 Yes 3 No

Post New Answer

More C Interview Questions

do ne body have any idea about the salary for the we r going to have interview. yup .. u got it right ..i m talking abt NIC.

1 Answers  


output for following code??? main() { int x=2,y,z; x*=3+2; printf("1.%d\n",x); x*=y=z=4; printf("2.%d %d %d\n",x,y,z); x=y==z; printf("3.%d\n",x); x==(y=z); printf("%d",x); }

2 Answers   Elysium,


what is the difference between NULL('\0') and 0?

14 Answers   Microsoft,


What will be result of the following program? void myalloc(char *x, int n) { x= (char *)malloc(n*sizeof(char)); memset(x,\0,n*sizeof(char)); } main() { char *g="String"; myalloc(g,20); strcpy(g,"Oldstring"); printf("The string is %s",g); } a) The string is : String b) Run time error/Core dump c) The string is : Oldstring d) Syntax error during compilation e) None of these

3 Answers   IBM,


write a program to find the sum of the array elements in c language?

24 Answers   ICT, Infosys, Wipro,






When should you use a type cast?

0 Answers  


Do character constants represent numerical values?

0 Answers  


Why clrscr is used after variable declaration?

0 Answers  


what is the difference between const volatile int i & volatile const int j;

2 Answers   HCL,


What does the message "automatic aggregate intialization is an ansi feature" mean?

0 Answers  


what is the definition of storage classes?

3 Answers   Wipro,


#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300

4 Answers   Tieto,


Categories