What is the size of array float a(10)?
No Answer is Posted For this Question
Be the First to Post Answer
WHAT IS INT?
main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); }
11 Answers CISOC, CitiGroup, College School Exams Tests,
main() { int i = 1; int num[] = {1,2,3,4}; num[i] = i++; printf("%d", num[i]); } what will be the output? }
22 Answers NDS, TCS,
Write a program of prime number using recursion.
Is int a keyword in c?
pgm to find middle element of linklist(in efficent manner)
What is the purpose of clrscr () printf () and getch ()?
What are header files and what are its uses in C programming?
What is meant by int fun const(int a, int b) { .... ... }
How do you convert strings to numbers in C?
What is #define size in c?
Is that possible to add pointers to each other?