write a c program to find largest of three numbers using simple if only for one time.
what is the little endian and big endian?
Can i use Two or More Main Funtion in any C program.?
What is pragma in c?
how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?
which is conditional construct a) if statement b) switch statement c) while/for d) goto
typedef struct { int i:8; char c:9; float f:20; }st_temp; int getdata(st_temp *stptr) { stptr->i = 99; return stptr->i; } main() { st_temp local; int i; local.c = 'v'; local.i = 9; local.f = 23.65; printf(" %d %c %f",local.i,local.c,local.f); i = getdata(&local); printf("\n %d",i); getch(); } why there there is an error during compiling the above program?
What does. int *x[](); means ?
What is spark map function?
write c program without semicolon
11 Answers MindTech, TCS, Wipro,
What is calloc() function?
Reverse the part of the number which is present from position i to j. Print the new number.[without using the array] eg: num=789876 i=2 j=5 778986
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} what would be the output?