Why is void main used?
No Answer is Posted For this Question
Be the First to Post Answer
Is malloc memset faster than calloc?
What is the difference between char a[] = "string"; and char *p = "string"; ?
14 Answers Adobe, Honeywell, TCS,
What is the relationship between pointers and data structure?
What are void pointers in c?
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
What is putchar() function?
How do we print only part of a string in c?
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.
How is a structure member accessed?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
how would a 4*3 array A[4][3] stored in Row Major Order?