Should I learn c before c++?
No Answer is Posted For this Question
Be the First to Post Answer
write a program to arrange the contents of a 1D array in ascending order
Differentiate between functions getch() and getche().
what is the output of the program and explain why?? #include<stdio.h> void main ( ) { int k=4,j=0: switch (k) { case 3; j=300; case 4: j=400: case 5: j=500; } printf (ā%d\nā,j); }
write a 'c' program to sum the number of integer values
Write a program with dynamically allocation of variable.
write a function that accepts an array A with n elements and array B with n-1 elements. Find the missing one in array B,with an optimized manner?
how to make c program without a libary? e.g.#include<stdio.h> libary is not in c progaram.
how can I convert a string to a number?
pgm to find middle element of linklist(in efficent manner)
which of the function operator cannot be over loaded a) <= b)?: c)== d)*
10 Answers Cisco, CTS, Google, HCL, HP,
an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational
Explain bitwise shift operators?