What are the different types of errors?
No Answer is Posted For this Question
Be the First to Post Answer
2.main { int x,j,k; j=k=6;x=2; x=j*k; printf("%d", x);
what are the files which are automatically opened when a c file is executed?
Without Computer networks, Computers will be half the use. Comment.
What are structure types in C?
What are linker error?
What is methods in c?
Write a program to swap two numbers without using a temporary variable?
Three major criteria of scheduling.
Write a program which take a integer from user and tell whether the given variable is squar of some number or not. eg: is this number is 1,4,9,16... or not
#include<stdio.h> void main() { int a=10,b=20,c=30; printf("%d",scanf("%d%d%d",&a,&b,&c)); } what is the output for this?
main() { static char *s[]={"black","white","yellow","voilet"}; char **ptr[]={s+3,s+2,s+1,s}, ***p; p=ptr; **++p; printf("%s",*--*++p+3); }
Write a function that accepts a sentence as a parameter, and returns the same with each of its words reversed. The returned sentence should have 1 blank space between each pair of words. Demonstrate the usage of this function from a main program. Example: Parameter: “jack and jill went up a hill” Return Value: “kcaj dna llij tnew pu a llih”