What are identifiers and keywords in c?
No Answer is Posted For this Question
Be the First to Post Answer
main() { char as[] = "\\0\0"; int i = 0; do{ switch( as[i++]) {case '\\' : printf("A"); break; case 0 : printf("B"); break; default : printf("C"); break; }} while(i<3); }
4 Answers Vector, Vector India,
Are pointers integer?
What would happen to X in this expression: X += 15; (assuming the value of X is 5)
What is #include stdio h?
What is the use of header?
Write a program for the following series: 1*3*5-2*4*6+3*5*7-4*6*8+.................up to nterms
write a c prog for removing duplicate character from an array and sorting remaining elements using a single array
write a program in c to read array check element is present or not?
WHOT IS CHAR?
Is register a keyword in c?
how to find binary of number?
union { char ch[10]; short s; }test; test.s = 0xabcd; main() { printf("%d",ch[10]); }