[ create a new paste ] login | about

knoxxs

Name: Abhishek Gupta
Email:
Site/Blog:
Location: India
Default language: C
Favorite languages: C
About: kleptomaniac for knowledge

Saved pastes by knoxxs:

C, pasted on Jan 18:
1
2
3
4
5
#include <stdio.h>
int main(){

printf(":%2$-*1$.5d:\n", 16, 20);
printf(":%2$-*1$.5d:\n", 16, 20.12);
...
view (19 lines, 12 lines of output)
C, pasted on Jan 13:
1
2
3
4
5
#include<stdio.h>

int main(){

printf("5/2 = %d\n",5/2);
...
view (15 lines, 8 lines of output)
C, pasted on Dec 19:
1
2
3
4
5
#include "stdio.h"
int main()
{
float celsius;
int lower, upper, step, fahr;
...
view (26 lines, 112 lines of output)
C, pasted on Oct 3:
1
2
3
4
#include<stdio.h>
#include<stdlib.h>

int main(){
...
view (19 lines, 3 lines of output)