Explain the term printf() and scanf() used in c language?
No Answer is Posted For this Question
Be the First to Post Answer
12345 1234 123 12 1
What is #pragma directive?how it is used in the program? what is its advantages and disadvantages?
How can you find out how much memory is available?
Explain zero based addressing.
Explain the advantages of using macro in c language?
What are terms in math?
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
can we write a program in c for printf and scanf without using header file stdio.h
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
#define MAX 3 main() { printf("MAX = %d \n",MAX ); #undef MAX #ifdef MAX printf("Vector Instituteā); #endif
How can I manipulate individual bits?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);