What is the difference between procedural and declarative language?
read the folllowing code # define MAX 100 # define MIN 100 .... .... if(x>MAX) x=1; else if(x<MIN) x=-1; x=50; if the initial value of x=200,what is the vlaue after executing this code? a.200 b.1 c.-1 d.50
WHAT IS C?
Why cann't whole array can be passed to function as value.
how to do in place reversal of a linked list(singly or doubly)?
Is flag a keyword in c?
What is the purpose of 'register' keyword in c language?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
what is the output of the program?? #include<stdio.h> main ( ) { int a=010,sum=0,tracker: for(tracker=0;tracker<=a;tracker++) sum+=tracker; printf(“ %d\n”,sum); } what is the difference between a=10 and a=010??
Why doesnt this code work?
how many errors in c explain deply
What are the c keywords?
What is a dynamic array in c?