How to write a code for implementing my own printf() and
scanf().... Please hep me in this... I need a guidance...
Can you give an coding for c... Please also explain about
the header files used other than #include<stdio.h>...
No Answer is Posted For this Question
Be the First to Post Answer
write a program to print data of 5 five students with structures?
Explain what is wrong with this statement? Myname = ?robin?;
what is the output of the program and explain why?? #include<stdio.h> void main ( ) { int k=4,j=0: switch (k) { case 3; j=300; case 4: j=400: case 5: j=500; } printf (ā%d\nā,j); }
write a program to arrange the contents of a 1D array in ascending order
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
What will happen when freeing memory twice
write a sorting prgm to sort 50 nos and sum them and also remove all the occurrences of 15 and print it?
User define function contain thier own address or not.
Is c is a high level language?
formula to convert 2500mmh2o into m3/hr
Which of the Following will define a type NODE that is a node in a Linked list? A)struct node {NODE*next;int x;};type def struct node NODE; B)typedef struct NODE {struct NODE *next;int x;}; C)typedef struct NODE {NODE *next;int x;}; D)typedef struct {NODE *next;int x;}NODE;
How to print all the 26 alphabets in this order in C. AbCdEfGh..... it should print dynamically from a to z and do not print this using pgm like this print("Ab......"); Use loops or anything to print all alphabets