Why we use int main and void main?
No Answer is Posted For this Question
Be the First to Post Answer
What are all different types of pointers in c?
how to build a exercise findig min number of e heap with list imlemented?
What is static identifier?
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 in C for showing working of different logical operator in C. Your program should guide users with proper message/menu on the console.
How we can set and clear bit in a byte using macro function?
what is the significance of static storage class specifier?
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
#include<stdio.h> main() { int a=1; int b=0; b=++a + ++a; printf("%d %d",a,b); }
What is nested structure in c?
What is a keyword?
hi... can anyone help me to make a two-dimensinal arrays in finding the sum of two elements plzzz. thnx a lot...