What are the c keywords?
No Answer is Posted For this Question
Be the First to Post Answer
What character terminates all strings composed of character arrays? 1) 0 2) . 3) END
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 is anagram in c?
how to create c progarm without void main()?
Can true be a variable name in c?
what are the static variables
8 Answers HCL, iFlex, TCS, Wipro,
How can I sort a linked list?
Where in memory are my variables stored?
Explain spaghetti programming?
Explain goto?
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
What is the difference between typedef struct and struct?