Does sprintf put null character?
No Answer is Posted For this Question
Be the First to Post Answer
What are the features of c languages?
#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
How to declare pointer variables?
Write a program in c to replace any vowel in a string with z?
Is c functional or procedural?
How do you print an address?
How to write a program for swapping two strings without using 3rd variable and without using string functions.
What are the modifiers available in c programming language?
what are threads ? why they are called light weight processes ? what is the relation between process and threads ?
the data type used for unlimited value in c and how to do this program
What is null character in c?
How can a program be made to print the line number where an error occurs?