What is zero based addressing?
No Answer is Posted For this Question
Be the First to Post Answer
Explain the differences between public, protected, private and internal.
Explain what is the difference between a string and an array?
Write a C program to count the number of email on text
Difference between malloc() and calloc() function?
which one is not preprocessor directive a)#if b)#elif c)#undef d)#pragma
16 Answers Accenture, Infosys, TCS, Wipro,
the output will be #include<stdio.h> int main () { int i; i = 9/2; printf("%i",i); return 0; }
read the folllowing code # define MAX 100 # define MIN 100 .... .... if(x>MAX) x=1; else if(x<MIN) x=-1; x=50; if the initial value of x=200,what is the vlaue after executing this code? a.200 b.1 c.-1 d.50
to find the closest pair
I need a help with a program: Write a C program that uses data input in determining the whole of points A and a whole of circles B. Find two points in A so that the line which passes through them, cut through the maximum number of circles.
why do we use # in c-language?
Is it possible to run a c program without using main?If yes HOW??
What is call by reference in functions?