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 |
write a program to check whether a given integer is a strong number or not? [Hint: 145=1!+4!+5! =1+24+120 =145]
regarding pointers concept
What is malloc() function?
Write a code to remove duplicates in a string.
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
HOW DO YOU HANDLE EXCEPTIONS IN C?
how to find out the inorder successor of a node in a tree??
Write a program to find given number is even or odd without using any control statement.
what is the different between data structure and data type?
What is the significance of c program algorithms?
without a terminator how can we print a message in a printf () function.
Why the below program throughs error during compilation? #include<stdio.h> #include<conio.h> enum { ZERO, ONE, TWO, }; main() { printf("%d",&TWO); getch(); }