What are the various types of control structures in programming?
No Answer is Posted For this Question
Be the First to Post Answer
a value that does not change during program execution a) variabe b) argument c) parameter d) none
what's the o/p int main(int n, char *argv[]) { char *s= *++argv; puts(s); exit(0); }
how to print value of e(exp1)up to required no of digits after decimal?
What is pointer in c?
What do you know about the use of bit field?
wat is the difference between a definition and declaration? float y;---it looks like a declaration..but it s a definition.how?someone explain
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
What are linked lists in c?
What is c language and why we use it?
Why can arithmetic operations not be performed on void pointers?
If fflush wont work, what can I use to flush input?
Explain Basic concepts of C language?