What's the best way of making my program efficient?
No Answer is Posted For this Question
Be the First to Post Answer
What does the format %10.2 mean when included in a printf statement?
what is the output of the program?? #include<stdio.h> main ( ) { int a=010,sum=0,tracker: for(tracker=0;tracker<=a;tracker++) sum+=tracker; printf(ā %d\nā,sum); } what is the difference between a=10 and a=010??
wite a programme in c to linear search a data using flag and without using flags?
What is a node in c?
code snippet for creating a pyramids triangle ex 1 2 2 3 3 3
write a program to find out prime number using sieve case?
What are structure types in C?
write a program to generate 1st n fibonacci prime number
HOW TO ANSWER IF ASKED " WHAT KIND OF A PERSON ARE YOU?" I NEED AN ANSWER THAT IMPRESS THE INTERVIEWER
which is conditional construct a) if statement b) switch statement c) while/for d) goto
what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }
What is pass by value in c?