Are the variables argc and argv are local to main?
What are the disadvantages of a shell structure?
helllo sir give me some information of the basic information the c as printf ,scanf , %d ,%f and why is the main use of these.
program to locate string with in a string with using strstr function
Why is python slower than c?
What is difference between array and structure in c?
explain what are pointers?
int main() { int *p=new int; *p=10; del p; cout<<*p; *p= 60; cout<<*p; } what will be the output & why?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
What is the difference between calloc() and realloc()?
f(*p) { p=(char *)malloc(6); p="hello"; return; } main() { char *p="bye"; f(p); printf("%s",p); } what is the o/p?
my project name is adulteration of chille powder.how can i explain it to the hr when he asks me about the project?
Is a pointer a kind of array?