What is printf () in c?
No Answer is Posted For this Question
Be the First to Post Answer
f(*p) { p=(char *)malloc(6); p="hello"; return; } main() { char *p="bye"; f(p); printf("%s",p); } what is the o/p?
how to write optimum code to divide a 50 digit number with a 25 digit number??
Can you subtract pointers from each other? Why would you?
print ur name 20,000 times without using inbuilt library functions like printf,scanf,gets,puts,getchar or putchar
There are N egg baskets and the number of eggs in each basket is a known quantity. Two players take turns to remove these eggs from the baskets. On each turn, a player must remove at least one egg, and may remove any number of eggs provided they all belong to the same basket. The player picking the last egg(s) wins the game. If you are allowed to decide who is going to start first, what mathematical function would you use to decide so that you end up on the winning side?
#include <stdio.h> #define sqr(x) (x*x) int main() { int x=2; printf("value of x=%d",sqr(x+1)); } What is the value of x?
16 Answers Accel Frontline, Opera, Oracle,
How can you dynamically allocate memory in C?
C program to find all possible outcomes of a dice?
What is dangling pointer in c?
What is the Difference between Class and Struct?
Do character constants represent numerical values?
What is queue in c?