In C language, a variable name cannot contain?
No Answer is Posted For this Question
Be the First to Post Answer
Difference between data structure and data base.
7 Answers CTS, Value Labs, Zoho,
What's the difference between constant char *p and char * constant p?
What is volatile c?
Is c is a procedural language?
differnce between do and do while
Should a function contain a return statement if it does not return a value?
Define recursion in c.
What is storage class?
What are the uses of pre-processor directives?
program to find which character is occured more times in a string and how many times it has occured? for example in the sentence "i love india" the output should be i & 3.
What should malloc() do? Return a null pointer or a pointer to 0 bytes?
f1() { f(3);} f(int t) { switch(t); { case 2: c=3; case 3: c=4; case 4: c=5; case 5: c=6; default: c=0;} value of c?