C language interview questions solution for freshers beginners placement tricky good pointers answers explanation operators data types arrays structures functions recursion preprocessors looping file handling strings switch case if else printf advance linux objective mcq faq online written test prime numbers Armstrong Fibonacci series factorial palindrome code programs examples on c++ tutorials and pdf
1) -b/(2*a) 2) sqrt(-d) / (2*a) why these two expressions are separately evaluated? what is the meaning of these two expressions. Please anybody help me.
#include #include {void main() char arr[]="we are Bangladeshi"; int len=strlen(arr[]); int i; int alpha for(i=0;arr[i]!='\0';i++) printf ("\n enter the line \n"); printf("\n string \n"); while(arr[i]='\0') if (arr[i]='32'); { alpha_c++; } else { alpha_c }
i am using Dev C++ compiler.i have the C code to solve a quadratic equation.the .exe file runs very well and provide the required solutions.my problem is that i want the program to function in a gui environment still using C language and the same Dev C++ compiler.possible?please help...!
can you solve this a = [1,2,3,4,10,20,30] # random length between 1 to 10,000, random content 1 to 10,000 b = [20,30,1,2,1,3,4,4,5]
def mergeCounter(a,b): response = {}
# Rules: # modify of array a and b is not allowed # merge of a and b is not allowed # you can only use one loop
### # TODO: Implement this function in below section ###
# Output: Is dictionary/map # Key: number # value: frequency of key from array a and b # Example: # a = [1,2,1,5] # b = [1,3,3,4,5] # response = {1:3,2:1,5:2,3:2,4:1}
18 comments:
#include
#include
#include
main()
{
float a,b,c,d,r1,r2;
printf("enter a ,b,c, values");
scanf("%f%f%f",&a,&b,&c);
d=(b*b)-(4*a*c);
if(d>0)
{
r1=-b+sqrt(d)/2*a;
r2=-b-sqrt(d)/2*a;
printf("root1= %f,root2=%f",r1,r2);
}
else
{
printf("roots are imaginary");
}
.....................
Its a simple and best program.
U are really helpful .
Thank u very much
Thank you very much for this easiest program
it gives call of nonfunction error
printf("%.3f%+.3fi",-b/(2*a),sqrt(-d)/(2*a));
printf(", %.3f%+.3fi",-b/(2*a),-sqrt(-d)/(2*a));
1) -b/(2*a)
2) sqrt(-d) / (2*a)
why these two expressions are separately evaluated?
what is the meaning of these two expressions. Please anybody help me.
#include
#include
{void main()
char arr[]="we are Bangladeshi";
int len=strlen(arr[]);
int i;
int alpha
for(i=0;arr[i]!='\0';i++)
printf ("\n enter the line \n");
printf("\n string \n");
while(arr[i]='\0')
if (arr[i]='32');
{
alpha_c++;
}
else {
alpha_c
}
}
nee ayya na arm pit nakkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkuuuuuuuuuuuuu
can anyone please comment the code for linear equations....
C program
How can I do it using for loops?
i can't
Thank you very much.
tq so much
i am using Dev C++ compiler.i have the C code to solve a quadratic equation.the .exe file runs very well and provide the required solutions.my problem is that i want the program to function in a gui environment still using C language and the same Dev C++ compiler.possible?please help...!
can you solve this
a = [1,2,3,4,10,20,30] # random length between 1 to 10,000, random content 1 to 10,000
b = [20,30,1,2,1,3,4,4,5]
def mergeCounter(a,b):
response = {}
# Rules:
# modify of array a and b is not allowed
# merge of a and b is not allowed
# you can only use one loop
###
# TODO: Implement this function in below section
###
# Output: Is dictionary/map
# Key: number
# value: frequency of key from array a and b
# Example:
# a = [1,2,1,5]
# b = [1,3,3,4,5]
# response = {1:3,2:1,5:2,3:2,4:1}
return response
# Testing
mergeCounter (a,b)
plzz any one help me to solve this program......write a program to print a 2,3,4,9,8,27,.....upto 20 terms
Post a Comment