In C programming, how do you insert quote characters (‘ and “) into the output screen?
No Answer is Posted For this Question
Be the First to Post Answer
we compile c program in 32 processor and 64 bit processor .exe file is created in both the processors. if we want to run .exe file in 64 bit processor which is created in 32 bit processor. is that .exe file is run or not if it is not run why?
What is the difference between void main and main in c?
What is the argument of a function in c?
how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?
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....?????
Do you know the use of fflush() function?
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
How is a two dimensional array passed to function when the order of matrix is not known at complie time?
1.write a program to merge the arrays 2.write efficient code for extracting unique elements from a sorted list of array?
what is the c source code for the below output? 1 0 1 1 0 1 0 1 0 1 1 0 1 0 1
1.find the second maximum in an array? 2.how do you create hash table in c? 3.what is hash collision
main() { enum{red,green,blue=6,white}; pf("%d%d%d%d", red,green,blue,white); return 0; } a)0 1 6 2 b)0 1 6 7 c)Compilation error d)None of the above