Explain can the sizeof operator be used to tell the size of an array passed to a function?
No Answer is Posted For this Question
Be the First to Post Answer
a linear linked list such that the link field of its last node points to the first node instead of containing NULL a) linked list b) circular linked list c) sequential linked list d) none
Identify the operators that is not used with pointer a. && b. # c. * d. >>
c pgm count no of lines , blanks, tabs in a para(File concept)
What is #include stdio h and #include conio h?
1. Write a C program to count the number of occurrence of a specific word in the given strings. (for e.g. Find how many times the word “live” comes in the sentence “Dream as if you’ll live forever, live as if you’ll die today ”)
#include<conio.h> #include<stdio.h> void main() { int i; if(1,0,2,3) { printf("if"); } else { printf("else"); } getch(); } Can any body tell the answer of this question with explanation?
#include<stdio.h> int main() { int i=2; int j=++i + ++i + i++; printf("%d\n",i); printf("%d\n",j); }
Difference Between embedded software and soft ware?
who invented c
When is an interface "good"?
1 1 12 21 123 321 12344231 how i creat it with for loop??
main() { int l=6; switch(l) { default:l=l+2; case 4:l=4; case 5:l++; break; } printf("%d",l); }