What are conditional operators in C?
what is pointer ?
10 Answers Kernex Micro Systems,
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
where are auto variables stored? What are the characteristics of an auto variable?
What are the 32 keywords in c?
there is two conditions , 1. while using for loop for printing 1 to 50 no's simulteneous 2. while using printf functios for printing 1 to 50 no's simulteneous with or without using variables who will take more time for compiling and execution? explain in details with reason?
how to determine the complexity of an algorithm as log(n)
what is const volatile?
How do I round numbers?
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
plz answer....A program that takes 3 variables e.g a,b,c in as seperate parameters and rotates the values stored so that value goes a to b, b to c and c to a .
Is malloc memset faster than calloc?
Why doesn't the code "a[i] = i++;" work?