What is the benefit of using #define to declare a constant?
No Answer is Posted For this Question
Be the First to Post Answer
What are formal parameters?
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
What is infinite loop?
Determine the code below, tell me exactly how many times is the operation sum++ performed ? for ( i = 0; i < 100; i++ ) for ( j = 100; j > 100 - i; j--) sum++;
What do you mean by Recursion Function?
What are the advantages of using linked list for tree construction?
f(*p) { p=(char *)malloc(6); p="hello"; return; } main() { char *p="bye"; f(p); printf("%s",p); } what is the o/p?
What is the use of printf() and scanf() functions?
for(i=0;i=printf("Hello");i++); printf("Hello"); how many times how will be printed?????????
main() { int i; printf("%d",i^i); }
Do you have any idea how to compare array with pointer in c?
main() { printf("hello"); fork(); }