there is two conditions , 1. while using for loop for printing 1 to 50 no's simulteneous 2. while using printf functios for printing 1 to 50 no's simulteneous with or without using variables who will take more time for compiling and execution? explain in details with reason?
1 3851A array contains dissimilar element how can we count, and A array contains dissimilar element how can we store in another array with out repetition.
4 7552
Why is c not oop?
What is the use of void pointer and null pointer in c language?
In C programming, how do you insert quote characters (‘ and “) into the output screen?
What is the difference between malloc() and calloc()?
What is the best way to store flag values in a program?
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
How do I get a null pointer in my programs?
Difference between goto, long jmp() and setjmp()?
What is the difference between declaring a variable by constant keyword and #define ing that variable?
What is a memory leak? How to avoid it?
What is hashing in c?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
What is the difference between ++a and a++?
Are pointers really faster than arrays?
write a program to find the given number is prime or not