How many data structures are there in c?
Is c still relevant?
Why main is not a keyword in c?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
Consider a language that does not have arrays but does have stacks as a data type.and PUSH POP..are all defined .Show how a one dimensional array can be implemented by using two stacks.
what is the difference between exit() and _exit() functions?
how can you print&scan anything using just one character? :) HINT: printf,scanf similer
fn f(x) { if(x<=0) return; else f(x-1)+x; }
can anyone please tell about the nested interrupts?
wat are the two methods for swapping two numbers without using temp 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?
Fifty minutes ago if it was four times as many mints past 3 o clock. how many minutes is it to six o'clock n how....?????
print pattern 1 1 33 33 555 555 77777777 555 555 33 33 1 1