How do we declare variables in c?
No Answer is Posted For this Question
Be the First to Post Answer
What are the 4 types of unions?
what is the output of the following program and explain the answer #include<stdio.h> exp() { main(5) } main(int a) { printf("%d",a); return; }
Write a c pgm for leap year
11 Answers College School Exams Tests, IBM, TCS,
Is there something we can do in C but not in C++? Declare variable names that are keywords in C++ but not C.
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,
What is meaning of tree
What is the acronym for ansi?
Why array is used in c?
write a program in c to read array check element is present or not?
difference between c and c++?
What is the use of static variable in c?
Can a binary search tree be used as an index? If yes, how? Explain