a c variable cannot start with
a) an alphabet
b) a number
c) a special symbol
d) both b and c above
No Answer is Posted For this Question
Be the First to Post Answer
int a[3][5]={ {1,2,3,4,5],{2,3,4,5,6},{10,11,12,13,14}}; int *p=&a; printf(ā%dā,*(*(x+1)+3));
In which header file is the null macro defined?
What are types of preprocessor in c?
What are local static variables? How can you use them?
what do the 'c' and 'v' in argc and argv stand for?
Diff: between this 2 classes in terms of memory class A { int i; char c; double d; }; class A { double d; int i; char c; }; How it is calculating?
Is register a keyword in c?
What are different storage class specifiers in c?
how to determine the complexity of an algorithm as log(n)
What is nested structure with example?
Can a void pointer point to a function?
What is the right type to use for boolean values in c?