What is putchar() function?
No Answer is Posted For this Question
Be the First to Post Answer
Which header file should you include if you are to develop a function which can accept variable number of arguments?
write a addition of two no. program with out using printf,scanf,puts .
#include<stdio.h> #include<conio.h> struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.
What are bitwise shift operators in c programming?
What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
Tell me can the size of an array be declared at runtime?
can anyone please tell me wat is backlogs... i was looking for the job openings where i read this.. eligibility criteria minimum 70% in degree without backlogs. is that arrear.. if so is it standing arrear or history of arrears... please help me...
11 Answers CTS, Indian Navy, L&T, Microsoft, SSB, TCE, TCS,
Explain the ternary tree?
What is the main difference between calloc () and malloc ()?
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
What is a loop?
Are the variables argc and argv are local to main?