Explain goto?
No Answer is Posted For this Question
Be the First to Post Answer
Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning
What is bin sh c?
fn f(x) { if(x<=0) return; else f(x-1)+x; }
What is true about the following C Functions a.Need not return any value b.Should always return an integer c.Should always return a float d.Should always return more than one value.
how can i get output like this? 1 2 3 4 5 6
Consider the following C program. #include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain
Lists the benefits of c programming language?
When is a “switch” statement preferable over an “if” statement?
Is c still used?
what is call by value and call by reference
Read N characters in to an array . Use functions to do all problems and pass the address of array to function. 1. Print only the alphabets . If in upper case print in lower case vice versa.
Explain how can a program be made to print the name of a source file where an error occurs?