What is a char c?
No Answer is Posted For this Question
Be the First to Post Answer
How will you declare an array of three function pointers where each function receives two ints and returns a float?
"I LOVE MY COUNTRY" write a c program to get "COUNTRY MY LOVE I" as the output. Use any other programming language. It is not mandatory to use C.
11 Answers ABC Infotech, ADP, College School Exams Tests, Kovair,
A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?
What is malloc return c?
Write a program or provide a pseudo code to flip the 2nd bit of the 32 bit number ! (Phone Screen)
how to get the starting address of file stored in harddisk through 'C'program.
while initialization of two dimensional arrays we can initialize like a[][2] but why not a[2][] is there any reason behind this?
Write a simple program to find the size of different basic data types in C.
Can the size of an array be declared at runtime?
i=10,j=20 j=i,j?(i,j)?i:j:j print i,j
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
What is the difference between test design and test case design?