what are the languages used in c#?
Answers were Sorted based on User's Feedback
ABCDCBA ABC CBA AB BA A A
Give differences between - new and malloc() , delete and free() ?
How many types of operators are there in c?
By using C language input a date into it and if it is right?
Write a program to produce the following output in c language? 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
What is data structure in c programming?
Why is c so important?
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
Why void is used in c?
Juxtapose the use of override with new. What is shadowing?
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
main() {char a[10]={1,2,3,4,5,6};int x; for(x=0;x<4;x++){ b[x]=x+'a';} printf("%s",b);}