Explain how can I right-justify a string?
No Answer is Posted For this Question
Be the First to Post Answer
What will happen when freeing memory twice
int a=20; int b=30; int c=40; printf("%d%d%d"); what will be the output?
What are the different categories of functions in c?
How do I send escape sequences to control a terminal or other device?
What is function prototype in c with example?
What is the purpose of the preprocessor directive error?
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?
plz answer....A program that takes 3 variables e.g a,b,c in as seperate parameters and rotates the values stored so that value goes a to b, b to c and c to a .
helllo sir , what is the main use of the pointer ,array ,and the structure with the example of a programe
1. What will be the output of the following programs. a) #include <stdio.h> Main() { Int x=4; While(x==1) { X=x-1; Printf(ā%dā,x); --x; } }
#define MAX 3 main() { printf("MAX = %d ",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif }
Is c weakly typed?