main difference between c and c++ language
Answer / guest
c is procedure oriented language
c++ is object oriented language
c is a not secure
c++ is a secured
c is low level language
c++ is a middle language
c is top-down approach
c++ is bottom-up approach
| Is This Answer Correct ? | 17 Yes | 1 No |
Write a C program to get the desired output. 1 1 2 1 1 3 3 1 1 4 6 4 1 1 5 10 10 5 1 . . . 1 n..............n 1 Note: n is a positive integer entered by the user.
when i declare as: void main() { clrscr(); int a=10; printf("%d",a) } my problem that why generate a error in above programs. please tell me answer seriously .
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above
who will call your main function in c under linux?
C program code int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
What are qualifiers in c?
What is the use of the #include directive?
Find the output? void main() {float a=2.0; printf("\nSize of a ::%d",sizeof(a)); printf("\nSize of 2.0 ::%d",sizeof(2.0));}
11 Answers IBM, TCS,
what is the difference between const volatile int i & volatile const int j;
Why clrscr is used after variable declaration?
write a program for 7*8 = 56 ? without using * multiply operator ? output = 56
Can you return null in c?