what are the languages used in c#?
Answers were Sorted based on User's Feedback
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
What should be keep precautions while using the recursion method?
int a=20; int b=30; int c=40; printf("%d%d%d"); what will be the output?
for(i=0;i=printf("Hello");i++); printf("Hello"); how many times how will be printed?????????
What does %f mean c?
What is the difference between i++ and i+1 ?(in terms of memory)
What are the salient features of c languages?
What is a constant and types of constants in c?
What is the OOPs concept?
write a program to find out prime number using sieve case?
which of the following statements is incorrect a.typedef struct new{ int n1; char n2; } DATA; b.typedef struct { int n3; char *n4; }ICE; c.typedef union { int n5; float n6; } UDT; d.#typedef union { int n7; float n8; } TUDAT;
Write the test cases for checking a variable having value in range -10.0 to +10.0?