Write a program to generate the Fibinocci Series
No Answer is Posted For this Question
Be the First to Post Answer
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
int arr[] = {1,2,3,4} int *ptr=arr; *(arr+3) = *++ptr + *ptr++; Final contents of arr[]
Which built-in library function can be used to match a patter from the string?
Why c is procedure oriented?
Write a c program to demonstrate Type casting in c?
How the C program can be compiled?
int a=20; int b=30; int c=40; printf("%d%d%d"); what will be the output?
what is a function prototype?
how can be easily placed in TCS.
when to use : in c program?
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
Tell me is null always defined as 0(zero)?