what different between c and c++
Answer / shivangi
c is procedural programming language and c++ is oop. then c is use of scan, printf and c++ is use of cin>> or count.
c is doesn't refrence variable and c++ is support refrence variable.
| Is This Answer Correct ? | 1 Yes | 0 No |
What is an expression?
What do you mean by keywords in c?
Whether there can be main inside another main?If so how does it work?
# define x=1+4; main() { int x; printf("%d%d",x/2,x/4); }
Write a c program to find, no of occurance of a given word in a file. The word is case sensitive.
What is data structure in c programming?
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
what is use#in c
how to estimate the disk access time? e.g. the time between read one byte and another byte in the disk.
What is the output of following program ? int main() { int x = 5; printf("%d %d %d\n", x, x << 2, x >> 2); }
What is the main differences between C and Embedded C?
pierrot's divisor program using c or c++ code