can we change the default calling convention in c if yes
than how.........?
No Answer is Posted For this Question
Be the First to Post Answer
void main() { int a[]={1,2,3,4,5},i; for(i=0;i<5;i++) printf("%d",a++); getch(); }
What are the types of operators in c?
How can I swap two values without using a temporary?
what is difference between #include<stdio.h> and #include"stdio.h"
What are 'near' and 'far' pointers?
How can I get random integers in a certain range?
How can you return multiple values from a function?
Dear Sir, we are required the bubble sorting programs Regs Prem
Can i use Two or More Main Funtion in any C program.?
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?
Write a program to find minimum between three no.s whithout using comparison operator.
what is the role you expect in software industry?