What does 2n 4c mean?



What does 2n 4c mean?..

Answer / Rahul Saini

In the context of C programming, '2n' and '4c' are not standard notations. It seems like a typo or a mix-up of mathematical notation (2n for '2 times n' and 4c for '4 times c') with programming syntax. In C programming, '2' and 'n' could be variables or constants, but they don't have any special meaning together as shown.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

write a program to check whether a given integer is a strong number or not? [Hint: 145=1!+4!+5! =1+24+120 =145]

7 Answers  


regarding pointers concept

1 Answers  


What is malloc() function?

1 Answers  


Write a code to remove duplicates in a string.

1 Answers   Expedia,


If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above

1 Answers  


HOW DO YOU HANDLE EXCEPTIONS IN C?

2 Answers   AppLabs,


how to find out the inorder successor of a node in a tree??

2 Answers   TCS, Yahoo,


Write a program to find given number is even or odd without using any control statement.

2 Answers  


what is the different between data structure and data type?

1 Answers   Ignou,


What is the significance of c program algorithms?

1 Answers  


without a terminator how can we print a message in a printf () function.

7 Answers   NIIT,


Why the below program throughs error during compilation? #include<stdio.h> #include<conio.h> enum { ZERO, ONE, TWO, }; main() { printf("%d",&TWO); getch(); }

2 Answers  


Categories