the maximum width of a c variable name can be
a) 6 characters
b) 8 characters
c) 10 characters
d) 20 characters
Answers were Sorted based on User's Feedback
What is difference between function overloading and operator overloading?
how to swap four numbers without using fifth variable?
write a program of bubble sort using pointer?
Meaning of () in c
How are structure passing and returning implemented?
how to implement stack operation using singly linked list
what will be maximum number of comparisons when number of elements are given?
What is new line escape sequence?
What is s in c?
Is main an identifier in c?
what does the following code do? fn(int n,int p,int r) { static int a=p; switch(n){ case 4:a+=a*r; case 3:a+=a*r; case 2:a+=a*r; case 1:a+=a*r; } } a.computes simple interest for one year b.computes amount on compound interest for 1 to 4 years c.computes simple interest for four year d.computes compound interst for 1 year
Why does the call char scanf work?