which do you prefer C or Pascal?
Answer / pooja chugh
c is written in high level while pascal is written in low
level like assembly language but the speed & execution of
assembly language is very faster so a normal user can't
understand it.therefore,we will prefer c for coding
| Is This Answer Correct ? | 7 Yes | 0 No |
how can i get output the following... 5 4 3 2 1 4 3 2 1 3 2 1 2 1 1 and 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 plz plz...
Write the Program to reverse a string using pointers.
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0
Is c object oriented?
I heard that you have to include stdio.h before calling printf. Why?
What is the difference between pure virtual function and virtual function?
What is an array in c?
Do you know the difference between malloc() and calloc() function?
what is difference between array of characters and string
What are Macros? What are its advantages and disadvantages?
What is the output of following program ? int main() { int x = 5; printf("%d %d %d\n", x, x << 2, x >> 2); }
#include<stdio.h> #include<conio.h> void main() { char ch='\356'; printf("%d",ch); } o/p=-18 why?plz.explain