What is structure in c language?
how to find the sizof of any datatype using bit manipulations
The code is::::: if(condition) Printf("Hello"); Else Printf("World"); What will be the condition in if in such a way that both Hello and world are printed in a single attempt?????? Single Attempt in the sense... It must first print "Hello" and it Must go to else part and print "World"..... No loops, Recursion are allowed........................
14 Answers HOV Services, IBM, Potty,
A marketing company wishes to construct a decision table to decide how to treat clients according to three characteristics: Gender, City Dweller, and age group: A (under 30), B (between 30 and 60), C (over 60). The company has four products (W, X, Y and Z) to test market. Product W will appeal to female city dwellers. Product X will appeal to young females. Product Y will appeal to Male middle aged shoppers who do not live in cities. Product Z will appeal to all but older females.
What is pass by reference in c?
IS Doon college of Engn.. has good faculty
Write a program for Overriding.
Write a c program to Find the name that you entered is male name or female name? Such as Sunjay is name of male and Payal is name of female
difference between the array and linked list general difference related to memory
How do I read the arrow keys? What about function keys?
what is the output of following question? void main() { int i=0,a[3]; a[i]=i++; printf("%d",a[i] }
#include<stdio.h> int SumElement(int *,int); void main(void) { int x[10]; int i=10; for(;i;) { i--; *(x+i)=i; } printf("%d",SumElement(x,10)); } int SumElement(int array[],int size) { int i=0; float sum=0; for(;i<size;i++) sum+=array[i]; return sum; } output?
What is NULL pointer?