How do you declare a variable that will hold string values?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between %d and %*d in C
Describe newline escape sequence with a sample program?
What is signed and unsigned?
a value that does not change during program execution a) variabe b) argument c) parameter d) none
any string of bits of length 'n' represents a unique non- negative integer between.............?
What are different types of variables in c?
what is the return type of printf
Is c procedural or object oriented?
Add Two Numbers Without Using the Addition Operator
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
What are preprocessor directives in c?
What is output of the following program ? main() { i = 1; printf("%d %d %d\n",i,i++,i++); }