What is bash c?
No Answer is Posted For this Question
Be the First to Post Answer
write a c/c++ program that takes a 5 digit number and calculates 2 power that number and prints it?
Explain the difference between #include "..." And #include <...> In c?
What is the proper way of these job Tell me about there full work
Why is event driven programming or procedural programming, better within specific scenario?
Is c language still used?
what is mallloc()?how it works?
#include<stdio.h> void main() { char *str; long unsigned int add; str="Hello C"; add=&str[0]; printf("%c",add); } What is the output?
What is the difference between array and pointer in c?
fn f(x) { if(x<=0) return; else f(x-1)+x; }
9.how do you write a function that takes a variable number of arguments? What is the prototype of printf () function? 10.How do you access command-line arguments? 11.what does ‘#include<stdio.h>’ mean? 12.what is the difference between #include<> and #include”…”? 13.what are # pragma staments? 14.what is the most appropriate way to write a multi-statement macro?
write a reverse string to print a stars.(with out using logic) ***** **** *** ** *
Why is %d used in c?