Is c easy to learn?
#include<stdio.h> main() {int i=1;j=1; for(;;) {if(i>5) break; else j+=1; printf("\n%d",j) i+=j; } }
How can I split up a string into whitespace-separated fields?
two variables are added answer is stored on not for third variable how it is possible?
write a program to find out number of on bits in a number?
Why c is a procedural language?
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
program to find the second largest word in a paragraph amongst all words that repeat more thn twice
Write a code to generate divisors of an integer?
Write a program to print factorial of given number using recursion?
How can I swap two values without using a temporary?
what is the output for this question: main() { int i=1; printf("%d%d%d",i,i++,++i); }
Can you please explain the difference between strcpy() and memcpy() function?