Is c functional or procedural?
Answer / baskar p
C is called a Procedural language because step by step implementation takes place.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the difference between char array and char pointer?
What does double pointer mean in c?
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
in which language c language is written?
What are the different types of C instructions?
Can the curly brackets { } be used to enclose a single line of code?
program to get the remainder and quotant of given two numbers with out using % and / operators?
10 Answers College School Exams Tests, IBM,
#include<stdio.h> int f(int,int); int main() { printf("%d",f(20,1)); return 0; } int f(int n,int k) { if(n==0) return 0; else if(n%2)return f(n/2,2*k)+k; else return f(n/2,2*k)-k; } how this program is working and generating output as 9....?
What is ctrl c called?
Explain what is the difference between declaring a variable and defining a variable?
What is the difference between scanf and fscanf?
When should you use a type cast?