define string ?
No Answer is Posted For this Question
Be the First to Post Answer
what do structure language means?
f(*p) { p=(char *)malloc(6); p="hello"; return; } main() { char *p="bye"; f(p); printf("%s",p); } what is the o/p?
what are the advantage of pointer variables? write a program to count the number of vowels and consonants in a given string
What is the right type to use for boolean values in c? Is there a standard type?
To what value are pointers initialized? 1) NULL 2) Newly allocated memory 3) No action is taken by the compiler to initialize pointers.
i want to switch my career from quailty assurance engineering to development kindly guide me from which programming language its better for me to start plz refer some courses or certifications too i have an experience of 1.5 yrs in QA field.Kindly guide me
What is a stream in c programming?
discuss the steps needed to get a program from source code to executable in a system?
how 2 compile & execute c program with out using editor?
main() { int i; printf("%d", &i)+1; scanf("%d", i)-1; }
Is c high or low level?
How do we swap or interchange any 2 numbers without using Temporary variable...Anybody can pls answer it.. Thanks in Advance