application attempts to perform an
operation?
No Answer is Posted For this Question
Be the First to Post Answer
c program to manipulate x=1+3+5+...+n using recursion
Add Two Numbers Without Using the Addition Operator
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
#include<stdio.h> #include<conio.h> int main() { int a[4][4]={{5,7,5,9}, {4,6,3,1}, {2,9,0,6}}; int *p; int (*q)[4]; p=(int*)a; q=a; printf("\n%u%u",p,q); p++; q++; printf("\n%u%u",p,q); getch(); return 0; } what is the meaning of this program?
What are the various topologies? Which one is the most secure?
can we store values and addresses in the same array? explain
can we declare a function in side the structure?
How many keywords (reserve words) are in c?
What is the general form of #line preprocessor?
main() { int l=6; switch(l) { default:l=l+2; case 4:l=4; case 5:l++; break; } printf("%d",l); }
what are the compilation steps? ( i want inside the compiler )
What is the use of c language in real life?