Write a program to print “hello world” without using semicolon?
No Answer is Posted For this Question
Be the First to Post Answer
What are keywords in c with examples?
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
What are the advantages of c preprocessor?
how to determine the complexity of an algorithm as log(n)
I need to take a sentence from input and sort the words alphabetically using the C programming language. Note: This is C not C++. qsort and strtok not allowed
to find the program of matrix multiplication using arrays
name the language for writing c compiler?
show how link list can be used to repersent the following polynomial i) 5x+2
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300,200,100
What are the types of data structures in c?
what is meant by flushll() in c programming?
a sequence of bytes with one to one corrspondence to those in the external device a) sequential addressing b) address c) byte code d) none