In C programming, how do you insert quote characters (‘ and “) into the output screen?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
What is return in c programming?
Hai what is the different types of versions and their differences
Which is an example of a structural homology?
What does #pragma once mean?
How can I make it pause before closing the program output window?
main() { struct test { char c; int i; char m; } t1; printf("%d %d\n", sizeof(t1), sizeof(t1.c)); }
1 Answers Vector, Vector India,
what is the most appropriate way to write a multi-statement macro?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
1)what is the error in the following stmt where str is a char array and the stmt is supposed to traverse through the whole character string str? for(i=0;str[i];i++) a)There is no error. b)There shud be no ; after the stmt. c)The cond shud be str[i]!='\0' d)The cond shud be str[i]!=NULL e)i shud be initialized to 1
write a program to search for an element in a given array. If the array was found then display its position otherwise display appropriate message in c language
Can you assign a different address to an array tag?