3 3 Pavanagg Asked: February 4, 20222022-02-04T18:33:59+05:30 2022-02-04T18:33:59+05:30In: C language Which of the following is not a valid variable name declaration?( int _a3, int 3_a, int a_3, int_3a) 3 3 Which of the following is not a valid variable name declaration? (a) int _a3; (b) int 3_a; (c) int a_3; (d) int _3a c languageoperators and expressions in cwhich of the following is not a valid variable name declaration int __a3 int __3a int __a3 Share Facebook Related Questions How to Swap Two Numbers in C without Using Third Variable: 3 Simple Methods functions can return enumeration constants in c true or false Write a C program to print a multiplication table of the numbers from 1 to 10 using function. Write a function to print a table of the numbers from 1 to 10, their squares, and their cubes. How do you program a simple calculator in C? 1 Answer Voted Oldest Recent ADMIN 2 2022-02-04T19:04:41+05:30Added an answer on February 4, 2022 at 7:04 pm This answer was edited. Correct answer is (b) int 3_a; Reason explanation: In C program a variable name cannot start with a digit or number. Leave an answerCancel replyYou must login to add an answer. Username or email* Password* Remember Me! Forgot Password?
Correct answer is (b) int 3_a;
Reason explanation: In C program a variable name cannot start with a digit or number.