What is n in c?



What is n in c?..

Answer / Nitesh Ranjan

In C programming, 'n' is a loop counter variable used in for loops. It does not have a specific meaning by default.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

write a program for 4 4 3 3 3 3 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 2 2 2 2 2 2 3 3 3 3 4 4

1 Answers  


main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }

2 Answers  


Explain the use of 'auto' keyword in c programming?

1 Answers  


What is function definition in c?

1 Answers  


How do you prevent buffer overflows in C?

2 Answers  


write a c program to add two integer numbers without using arithmetic operator +

13 Answers   Value Labs,


Why should I use standard library functions instead of writing my own?

1 Answers  


Write a C program to get the desired output. 1 1 2 1 1 3 3 1 1 4 6 4 1 1 5 10 10 5 1 . . . 1 n..............n 1 Note: n is a positive integer entered by the user.

4 Answers  


What is the usage of the pointer in c?

1 Answers  


what are # pragma staments?

1 Answers  


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

0 Answers  


Why is c fast?

1 Answers  


Categories