What language is windows 1.0 written?
No Answer is Posted For this Question
Be the First to Post Answer
to find the closest pair
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
Process by which one bit pattern in to another by bit wise operation is?
Read N characters in to an array . Use functions to do all problems and pass the address of array to function. 2. Enter alphanumeric characters and form 2 array alphaets and digits.Also print the count of each array.
the number of measuring units from a arbitrary starting point in a record area or control block to some other point a) branching b) recording pointer c) none d) offset
how to use showbits function?
What is the o/p of the follow pgm? #include<stdio.h> main() { char char_arr[5]=”ORACL”; char c=’E’; prinf(“%s\n”,strcat(char_arr,c)); } a:oracle b. oracl c.e d.none
Why do we use stdio h and conio h?
What are enums in c?
Write a code to generate divisors of an integer?
Is it better to use malloc() or calloc()?
program for comparing 2 strings without strcmp()