What is the difference between printf and scanf in c?
No Answer is Posted For this Question
Be the First to Post Answer
#include<std.h> int main() { char *str[]={"Frogs","Do","Not","Die","They","Croak!"}; printf("%d %d\n",sizeof(str),strlen(str)); ...return 0; } what will the output of the above program?
How to write in a function declaration and in function call in which the function has 'n' number of varible or arguments?
Does c have class?
How would you find a cycle in a linked list?
code for concatination of 2 strings with out using library functions?
Compare interpreters and compilers.
Write a program in c to input a 5 digit number and print it in words.
What is the difference between exit() and _exit() function?
IS it possible to define a zero sized array in c.if it is possible how can the elements of that array can be accessed.array index starts from zero,if it is possible to define zero sized array how can be its first element can be accesseed.
write a c program to find the roots of a quadratic equation ax2 + bx + c = 0
11 Answers CSC, St Marys, TATA,
#define MAX 3 main() { printf("MAX = %d \n",MAX ); #undef MAX #ifdef MAX printf("Vector Instituteā); #endif
How many ways are there to swap two numbers without using temporary variable? Give the each logic.