Is null always defined as 0(zero)?
No Answer is Posted For this Question
Be the First to Post Answer
how does the for loop work actually..suppose for the following program how it ll work plz explain to me for(i=5;i>=0;i--) prinf(i--);
ASCII stands for
. Consider the following program main() { int a[5]={1,3,6,7,0}; int *b; b=&a[2]; } The value of b[-1] is (A) 1 (B) 3 (C) -6 (D) none
What are pointers? What are different types of pointers?
Why do we need a structure?
What is return in c programming?
Suppose I want to write a function that takes a generic pointer as an argument and I want to simulate passing it by reference. Can I give the formal parameter type void **, and do something like this? void f(void **); double *dp; f((void **)&dp);
Program to swap the any two elements in an array containing N number of elements?
1 Answers Bosch, Glenwood, Ugam Solutions,
why division operator not work in case of float constant?
char *p="name"; printf(p);
Concat two string with most overlapped substring has to removeĀ "abcd"+ "cdef" = "abcdef
Is it better to use malloc() or calloc()?