c program to print a name without using semicolon
Answer Posted / 080132
#include<stdio.h>
#include<conio.h>
void main{
if(printf("I am arafat from jstu")){
}
if(printf(" ")){
}
if(getch()){
}
}
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Where we use clrscr in c?
What is c++ used for today?
How will you declare an array of three function pointers where each function receives two ints and returns a float?
Write a C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix
List some of the dynamic data structures in C?
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none
Explain how do you print only part of a string?
Do variables need to be initialized?
What do you mean by dynamic memory allocation in c? What functions are used?
What is pragma in c?
What is the use of typedef in c?
What are examples of structures?
What does & mean in scanf?
What is the use of typedef in structure in c?
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples