What does s c mean on snapchat?
No Answer is Posted For this Question
Be the First to Post Answer
What is an example of enumeration?
#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 meant by gets in c?
how to find out the biggest element (or any other operation) in an array which is dynamic. User need not to mention the array size while executing.
Explain the term printf() and scanf() used in c language?
Where static variables are stored in c?
what is the difference between #include<> and #include”…”?
What is difference between scanf and gets?
what does keyword ‘extern’ mean in a function declaration?
Write a program to display the no of bit difference between any 2 given numbers eg: Num1 will 12->1100 Num2 will 7->0111 the difference in bits are 2.
What's the difference between calloc() and malloc()?
What is bubble sort technique in c?