What are formal parameters?
No Answer is Posted For this Question
Be the First to Post Answer
print pattern 1 1 33 33 555 555 77777777 555 555 33 33 1 1
Why we use break in c?
what is the use of bitfields & where do we use them?
What is function prototype in c language?
In c programming, explain how do you insert quote characters (? And ?) Into the output screen?
How can I split up a string into whitespace-separated fields?
Explain what are the different data types in c?
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 signals in C?
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none
PROGRAM TO WRITE CONTENTS OF 1 FILE IN REVERSE TO ANOTHER FILE,PROGRAM TO COPY 1 FILE TO ANOTHER BY SPECIFYING FILE NAMES AS COMMAND LINE
what is the use of ‘auto’ keyword?