What does p mean in physics?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

Write the program for displaying the ten most frequent words in a file such that your program should be efficient in all complexity measures.

3 Answers   Google,


A banker has a seif with a cipher. Not to forget the cipher, he wants to write it coded as following: each digit to be replaced with the difference of 9 with the current digit. The banker chose a cipher. Decipher it knowing the cipher starts with a digit different than 9. I need to write a program that takes the cipher from the keyboard and prints the new cipher. I thought of the following: Take the input from the keyboard and put it into a string or an array. Go through the object with a for and for each digit other than the first, substract it from 9 and add it to another variable. Print the new variable. Theoretically I thought of it but I don't know much C. Could you give me any kind of hint, whether I am on the right track or not?

0 Answers  


Explain what is the difference between functions abs() and fabs()?

0 Answers  


int main(){ float f=8.0; if(f==8.0) printf("good"); else printf("bad"); } what is the answere and explain it?

3 Answers  


What is atoi and atof in c?

0 Answers  






Why c is called object oriented language?

0 Answers  


What are integer variable, floating-point variable and character variable?

0 Answers  


Why do we use int main instead of void main in c?

0 Answers  


WRITE A PROGRAM IN C TO MULTIPLY TWO 2-D ARRAYS

4 Answers  


In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?

0 Answers  


C program to read the integer and calculate sum and average using single dimensional array

0 Answers  


#define f(x) main() { printf("\n%d",f(2+2)); }

5 Answers  


Categories